Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Zip chrome
run: zip -qq -r chrome.zip *
working-directory: dist/chrome_prod
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: chrome
path: dist/chrome_prod/chrome.zip
Expand All @@ -40,7 +40,7 @@ jobs:
- name: Zip firefox
run: zip -qq -r firefox.zip *
working-directory: dist/firefox_prod
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: firefox
path: dist/firefox_prod/firefox.zip
Expand All @@ -51,7 +51,7 @@ jobs:
if: github.ref == 'refs/heads/master'
steps:
- name: Download extension
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: chrome
- name: Publish Chrome
Expand All @@ -72,7 +72,7 @@ jobs:
- name: Zip source
run: zip -qq -r src.zip *
- name: Download extension
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: firefox
- name: Publish Firefox
Expand All @@ -92,7 +92,7 @@ jobs:
if: github.ref == 'refs/heads/master'
steps:
- name: Download extension
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
- name: Release
uses: softprops/action-gh-release@v2
with:
Expand Down