diff options
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r-- | .github/workflows/release.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2e6d2a33..b3aaacaf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -62,15 +62,15 @@ jobs: # Upload each release asset - name: Upload to release - uses: JasonEtco/upload-to-release@master + uses: Shopify/upload-to-release@master with: - args: ./builds/ChromeExtension.zip + args: builds/ChromeExtension.zip env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Upload to release - uses: JasonEtco/upload-to-release@master + uses: Shopify/upload-to-release@master with: - args: ./builds/FirefoxExtension.zip + args: builds/FirefoxExtension.zip env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |