Skip to content

Commit

Permalink
artifact patterns ''
Browse files Browse the repository at this point in the history
  • Loading branch information
HenriWahl committed Apr 20, 2024
1 parent 6c3bf13 commit 911ecf5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-release-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ jobs:
# get binaries created by other jobs
- uses: actions/download-artifact@v4
with:
pattern: debian
pattern: 'debian*'
# 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 @@ -362,7 +362,7 @@ jobs:
# get binaries created by other jobs
- uses: actions/download-artifact@v4
with:
pattern: fedora-*
pattern: 'fedora*'
# organize SSH deploy key for nagstamon-repo
- run: mkdir ~/.ssh
- run: echo "${{ secrets.NAGSTAMON_REPO_KEY_WEB }}" > ~/.ssh/id_ed25519
Expand Down Expand Up @@ -397,7 +397,7 @@ jobs:
# get binaries created by other jobs
- uses: actions/download-artifact@v4
with:
name: rhel-*
name: 'rhel*'
# organize SSH deploy key for nagstamon-repo
- run: mkdir ~/.ssh
- run: echo "${{ secrets.NAGSTAMON_REPO_KEY_WEB }}" > ~/.ssh/id_ed25519
Expand Down Expand Up @@ -425,7 +425,7 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
pattern: *
pattern: '*'
- 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 911ecf5

Please sign in to comment.