Skip to content

Commit

Permalink
Merge pull request #42 from JHWelch/fix-pipeline-releases
Browse files Browse the repository at this point in the history
Fix filepaths for release artifacts
  • Loading branch information
JHWelch authored Oct 23, 2023
2 parents c87acbe + 7158e39 commit 794459c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,13 +156,16 @@ jobs:
uses: actions/download-artifact@v3
with:
name: chrome-release
path: chrome-release.zip
path: chrome

- name: Download Firefox Release
uses: actions/download-artifact@v3
with:
name: firefox-release
path: firefox-release.xpi
path: firefox

- name: Create GitHub release
run: gh release create v$VERSION --title "Store Release v$VERSION" --generate-notes chrome-release.zip firefox-release.xpi
run: |
mv chrome/release.zip chrome-release.zip
mv firefox/release.zip firefox-release.xpi
gh release create v$VERSION --title "Store Release v$VERSION" --generate-notes chrome-release.zip firefox-release.xpi

0 comments on commit 794459c

Please sign in to comment.