diff options
author | Ajay Ramachandran <[email protected]> | 2020-12-16 13:41:23 -0500 |
---|---|---|
committer | Ajay Ramachandran <[email protected]> | 2020-12-16 13:41:23 -0500 |
commit | 81926367b152c3f230e12d951659b411f80bad41 (patch) | |
tree | 0646329f30f130a051027500a2669daec41e9b96 | |
parent | 5ac5b557b02b6b37683f6265ad6323d7db0d3725 (diff) | |
download | SponsorBlock-81926367b152c3f230e12d951659b411f80bad41.tar.gz SponsorBlock-81926367b152c3f230e12d951659b411f80bad41.zip |
Revert "Don't include non signed Firefox extension in release assets"
This reverts commit 9bd5c971c6de31149be798dcac6f6621b8f376a4.
-rw-r--r-- | .github/workflows/release.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 732bb64d..5a5abfdf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,6 +36,8 @@ jobs: with: name: FirefoxExtension path: dist + - name: Zip Artifacts + run: cd ./dist ; zip -r ../builds/FirefoxExtension.zip * # Create Beta artifacts (Builds with the name changed to beta) - name: Create Chrome Beta artifacts @@ -62,6 +64,13 @@ jobs: name: ChromeExtensionBeta.zip path: ./builds/ChromeExtensionBeta.zip repo-token: ${{ secrets.GITHUB_TOKEN }} + - name: Upload FirefoxExtension to release + uses: Shopify/upload-to-release@master + with: + args: builds/FirefoxExtension.zip + name: FirefoxExtension.zip + path: ./builds/FirefoxExtension.zip + repo-token: ${{ secrets.GITHUB_TOKEN }} # Firefox Beta - name: Create Firefox Beta artifacts |