Skip to content

Commit

Permalink
[Release|CI/CD] Download only linux artefacts for deb package build (#…
Browse files Browse the repository at this point in the history
…7271)

This PR contains a fix for the rc-build release pipeline. The problem
was, that for the deb package build were all the artefacts downloaded
and merged together, what could lead to the issue, that the polkadot
linux binary was overwritten with the macos one.
  • Loading branch information
EgorPopelyaev authored Jan 23, 2025
1 parent 5772b9d commit fb2e414
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/release-reusable-rc-buid.yml
Original file line number Diff line number Diff line change
Expand Up @@ -263,9 +263,24 @@ jobs:
ref: ${{ inputs.release_tag }}
fetch-depth: 0

- name: Download artifacts
- name: Download polkadot_x86_64-unknown-linux-gnu artifacts
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
with:
name: polkadot_x86_64-unknown-linux-gnu
path: target/production
merge-multiple: true

- name: Download polkadot-execute-worker_x86_64-unknown-linux-gnu artifacts
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
with:
name: polkadot-execute-worker_x86_64-unknown-linux-gnu
path: target/production
merge-multiple: true

- name: Download polkadot-prepare-worker_x86_64-unknown-linux-gnu artifacts
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
with:
name: polkadot-prepare-worker_x86_64-unknown-linux-gnu
path: target/production
merge-multiple: true

Expand Down

0 comments on commit fb2e414

Please sign in to comment.