Skip to content

Commit

Permalink
actions/download-artifact ${{ github.job }}
Browse files Browse the repository at this point in the history
  • Loading branch information
HenriWahl committed Apr 20, 2024
1 parent be0ced0 commit d4968a6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build-release-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,8 @@ jobs:
- uses: actions/checkout@v4
# get binaries created by other jobs
- uses: actions/download-artifact@v4
with:
name: ${{ github.job }}
# get secret signing key
- run: echo "${{ secrets.PACKAGE_SIGNING_KEY }}" > signing_key.asc
# organize SSH deploy key for nagstamon-jekyll repo
Expand Down Expand Up @@ -359,6 +361,8 @@ jobs:
steps:
# get binaries created by other jobs
- uses: actions/download-artifact@v4
with:
name: ${{ github.job }}
# organize SSH deploy key for nagstamon-repo
- run: mkdir ~/.ssh
- run: echo "${{ secrets.NAGSTAMON_REPO_KEY_WEB }}" > ~/.ssh/id_ed25519
Expand Down Expand Up @@ -392,6 +396,8 @@ jobs:
steps:
# get binaries created by other jobs
- uses: actions/download-artifact@v4
with:
name: ${{ github.job }}
# organize SSH deploy key for nagstamon-repo
- run: mkdir ~/.ssh
- run: echo "${{ secrets.NAGSTAMON_REPO_KEY_WEB }}" > ~/.ssh/id_ed25519
Expand All @@ -418,6 +424,8 @@ jobs:
needs: [repo-rpm-rhel]
steps:
- uses: actions/download-artifact@v4
with:
name: ${{ github.job }}
- run: cd artifact && md5sum *agstamon* > md5sums.txt
- run: cd artifact && sha256sum *agstamon* > sha256sums.txt
- uses: marvinpinto/action-automatic-releases@latest
Expand Down

0 comments on commit d4968a6

Please sign in to comment.