diff options
author | LASER-Yi <[email protected]> | 2021-03-31 01:20:26 +0800 |
---|---|---|
committer | LASER-Yi <[email protected]> | 2021-03-31 01:20:26 +0800 |
commit | e88c94ccd2d9a26c6562bd62c8182013155a56b4 (patch) | |
tree | 14b5e1ec98c5ec6792b049bf5e24cedd95a9dc5f /.github/workflows | |
parent | 535c32ba91b6b51d355153593faa4012e697b32d (diff) | |
download | bazarr-e88c94ccd2d9a26c6562bd62c8182013155a56b4.tar.gz bazarr-e88c94ccd2d9a26c6562bd62c8182013155a56b4.zip |
no log: Add a step to build standalone version in action and upload to asset
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/release_beta_to_dev.yaml | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/.github/workflows/release_beta_to_dev.yaml b/.github/workflows/release_beta_to_dev.yaml index 2883f6d43..0f8c84274 100644 --- a/.github/workflows/release_beta_to_dev.yaml +++ b/.github/workflows/release_beta_to_dev.yaml @@ -41,6 +41,7 @@ jobs: - name: Install Global Tools run: npm install -g release-it @release-it/bumper auto-changelog + # TODO: Remove @release-it/bumper - name: Install UI Dependencies run: npm install @@ -49,12 +50,7 @@ jobs: - name: Build & Stage UI run: npm run build && git add . working-directory: ${{ env.UI_DIRECTORY }} - - - name: Save UI to Asset - run: | - mkdir -p ../.${{ env.ASSET_DIRECTORY }} && - zip -r ../.${{ env.ASSET_DIRECTORY }}/ui.zip ./ -x '*.map' -b $(mktemp -d) - working-directory: ${{ env.UI_DIRECTORY }}/build + # TODO: Remove Stage Step - name: Create Release run: release-it --ci --increment prerelease --preRelease=beta |