Skip to content

Commit 82175ca

Browse files
committed
Make sure we use the correct binary
1 parent 8989b2b commit 82175ca

File tree

2 files changed

+2
-34
lines changed

2 files changed

+2
-34
lines changed

.github/workflows/build-westend.yml

Lines changed: 2 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -10,32 +10,6 @@ env:
1010
NIGHTLY_TOOLCHAIN: nightly-2025-04-03
1111

1212
jobs:
13-
build-binaries:
14-
name: Build Branch
15-
runs-on: ubicloud-standard-16
16-
container: ghcr.io/frequency-chain/frequency/ci-base-image:1.5.5
17-
env:
18-
BIN_DIR: target/release
19-
steps:
20-
- name: Check Out Repo
21-
uses: actions/checkout@v4
22-
- name: Compile Binary
23-
run: |
24-
CARGO_INCREMENTAL=0 cargo build --locked --release \
25-
--features frequency-westend,frequency-bridging
26-
- name: Run Sanity Checks
27-
working-directory: ${{env.BIN_DIR}}
28-
run: |
29-
file frequency && \
30-
./frequency --version
31-
mv frequency frequency-testnet-westend.amd64
32-
- name: Upload Artifact
33-
uses: actions/upload-artifact@v4
34-
with:
35-
name: artifacts-binary-testnet-westend-${{github.run_id}}
36-
path: ${{env.BIN_DIR}}/frequency-testnet-westend.amd64
37-
if-no-files-found: error
38-
3913
release-node-images:
4014
needs: build-binaries
4115
name: Release ${{matrix.arch}} Node Docker Image for ${{matrix.network}}
@@ -50,7 +24,7 @@ jobs:
5024
env:
5125
DOCKER_HUB_PROFILE: frequencychain
5226
IMAGE_NAME: parachain-node
53-
NEW_RELEASE_TAG: v0.0.1
27+
NEW_RELEASE_TAG: v0.0.2
5428
runs-on: ubuntu-24.04
5529
steps:
5630
- name: Set Env Vars
@@ -60,12 +34,6 @@ jobs:
6034
echo "RELEASE_BIN_FILENAME=${{matrix.release-file-name-prefix}}.${{matrix.arch}}" >> $GITHUB_ENV
6135
- name: Check Out Repo
6236
uses: actions/checkout@v4
63-
- name: Download Binaries
64-
id: download-binaries
65-
uses: actions/download-artifact@v4
66-
with:
67-
pattern: artifacts-binary-${{matrix.network}}-${{github.run_id}}
68-
path: .
6937
- name: Extract and List Downloaded Binaries
7038
run: |
7139
download_dir=${{steps.download-binaries.outputs.download-path}}
@@ -75,7 +43,7 @@ jobs:
7543
- name: Move Binary to Target Dir
7644
run: |
7745
mkdir -p ${{env.BIN_DIR}}
78-
mv ${{env.RELEASE_BIN_FILENAME}} ${{env.BIN_DIR}}/${{env.BUILT_BIN_FILENAME}}
46+
mv ./frequency ${{env.BIN_DIR}}/${{env.BUILT_BIN_FILENAME}}
7947
chmod +x ${{env.BIN_DIR}}/${{env.BUILT_BIN_FILENAME}}
8048
- name: Set up QEMU
8149
uses: docker/setup-qemu-action@v3

frequency

93.1 MB
Binary file not shown.

0 commit comments

Comments
 (0)