Skip to content

Commit

Permalink
path: artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
HenriWahl committed Apr 21, 2024
1 parent a416132 commit 5cd8642
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,8 @@ jobs:
- uses: actions/download-artifact@v4
with:
pattern: 'debian*'
path: artifact
merge-multiple: true
# 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 @@ -363,6 +365,8 @@ jobs:
- uses: actions/download-artifact@v4
with:
pattern: 'fedora*'
path: artifact
merge-multiple: true
# 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 +401,9 @@ jobs:
# get binaries created by other jobs
- uses: actions/download-artifact@v4
with:
name: 'rhel*'
pattern: 'rhel*'
path: artifact
merge-multiple: true
# organize SSH deploy key for nagstamon-repo
- run: mkdir ~/.ssh
- run: echo "${{ secrets.NAGSTAMON_REPO_KEY_WEB }}" > ~/.ssh/id_ed25519
Expand Down

0 comments on commit 5cd8642

Please sign in to comment.