Skip to content

Commit

Permalink
[GHA] Fix path for merged downloaded artifact
Browse files Browse the repository at this point in the history
related #315
  • Loading branch information
RoiArthurB committed Sep 9, 2024
1 parent b04732a commit fcd9058
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/travis-packaging-linux-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/download-artifact@v4
with:
#name: gama-linux-deb
path: gama-linux-deb
path: ${{ github.workspace }}
pattern: gama-linux-deb-*
merge-multiple: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/travis-packaging-macos-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/download-artifact@v4
with:
#name: gama-mac-signed
path: gama-mac-signed
path: ${{ github.workspace }}
pattern: gama-mac-signed-*
merge-multiple: true

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/travis-publish-github.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,23 +37,23 @@ jobs:
- uses: actions/download-artifact@v4
with:
#name: gama-mac-signed
path: gama-mac-signed
path: ${{ github.workspace }}
pattern: gama-mac-signed-*
merge-multiple: true

# Get Linux deb archive
- uses: actions/download-artifact@v4
with:
#name: gama-linux-deb
path: gama-linux-deb
path: ${{ github.workspace }}
pattern: gama-linux-deb-*
merge-multiple: true

# Get Windows exe
- uses: actions/download-artifact@v4
with:
#name: gama-windows-exe
path: gama-windows-exe
path: ${{ github.workspace }}
pattern: gama-windows-exe-*
merge-multiple: true

Expand Down

0 comments on commit fcd9058

Please sign in to comment.