aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorAjay Ramachandran <[email protected]>2020-02-20 11:39:06 -0500
committerAjay Ramachandran <[email protected]>2020-02-20 11:39:06 -0500
commit514a8b62d6539713e62f59e9a6844b168e105771 (patch)
tree64530b3cf0ec29a3e0000ca5f483f4bcc8574489 /.github
parent8be3cb157a1c62ab6495b98d1f26337e32e5b5e7 (diff)
downloadSponsorBlock-514a8b62d6539713e62f59e9a6844b168e105771.tar.gz
SponsorBlock-514a8b62d6539713e62f59e9a6844b168e105771.zip
Added beta build to CI
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index a80b241b..9066a782 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -32,3 +32,17 @@ jobs:
name: FirefoxExtension
path: dist
+ # Create Beta artifacts (Builds with the name changed to beta)
+ - name: Create Chrome Beta artifacts
+ run: npm run build:chrome -- --env.stream=beta
+ - uses: actions/upload-artifact@v1
+ with:
+ name: ChromeExtensionBeta
+ path: dist
+ - name: Create Firefox Beta artifacts
+ run: npm run build:firefox -- --env.stream=beta
+ - uses: actions/upload-artifact@v1
+ with:
+ name: FirefoxExtensionBeta
+ path: dist
+