Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Rework jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
chevdor committed Jul 27, 2023
1 parent ecd6259 commit 2bfa79f
Showing 1 changed file with 8 additions and 13 deletions.
21 changes: 8 additions & 13 deletions .github/workflows/release-40_publish-rc-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,32 +23,27 @@ env:
REPO: ${{ github.event.repository.name }}

jobs:
fetch-artifacts:
build-containers:
runs-on: ubuntu-latest
strategy:
matrix:
binary: ["polkadot", "staking-miner"]

steps:
- name: Checkout sources
uses: actions/checkout@v3

- name: Fetch all artifacts
- name: Source common lib
run: |
. ./scripts/ci/common/lib.sh
fetch_release_artifacts
build-container:
runs-on: ubuntu-latest
needs: fetch-artifacts
strategy:
matrix:
binary: ["polkadot", "staking-miner"]
- name: Fetch all artifacts
run: |
fetch_release_artifacts
steps:
- name: Check ${{ matrix.binary }}
working-directory: ./artifacts
run: |
. ./scripts/ci/common/lib.sh
echo "Checking binary ${{ matrix.binary }}"
check_sha256 ${{ matrix.binary }}
check_gpg ${{ matrix.binary }}
Expand Down

0 comments on commit 2bfa79f

Please sign in to comment.