diff options
author | morpheus65535 <[email protected]> | 2021-03-25 20:43:31 -0400 |
---|---|---|
committer | morpheus65535 <[email protected]> | 2021-03-25 20:43:31 -0400 |
commit | 6abca59c83a1a6ce1c040af02a89d351d23897d2 (patch) | |
tree | 0b8442085d833594c5930194ff1618fc9460d340 /.github/workflows | |
parent | eb4fbc6a24f11b721175a16c123421a521aa0b1b (diff) | |
download | bazarr-6abca59c83a1a6ce1c040af02a89d351d23897d2.tar.gz bazarr-6abca59c83a1a6ce1c040af02a89d351d23897d2.zip |
Re-enabled dev pipeline with build committed.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/release_beta_to_dev.yaml | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/.github/workflows/release_beta_to_dev.yaml b/.github/workflows/release_beta_to_dev.yaml index e1de9eeb2..a6ea3add2 100644 --- a/.github/workflows/release_beta_to_dev.yaml +++ b/.github/workflows/release_beta_to_dev.yaml @@ -24,18 +24,22 @@ jobs: - run: npm install -D release-it - run: npm install -D @release-it/bumper - #- name: Install dependencies - # run: npm install - # working-directory: ${{ env.working-directory }} - - #- name: Remove previous build directory - # uses: JesseTG/[email protected] - # with: - # path: ${{ env.working-directory }}/build - - #- name: Build - # run: npm run build - # working-directory: ${{ env.working-directory }} + - name: Install dependencies + run: npm install + working-directory: ${{ env.working-directory }} + + - name: Remove previous build directory + uses: JesseTG/[email protected] + with: + path: ${{ env.working-directory }}/build + + - name: Build + run: npm run build + working-directory: ${{ env.working-directory }} + + - uses: stefanzweifel/git-auto-commit-action@v4 + with: + commit_message: Release commit build - id: latest_release uses: pozetroninc/github-action-get-latest-release@master |