ci: Combine build and release steps (#1532)

This commit is contained in:
Dermot Duffy
2024-09-14 20:08:24 -07:00
committed by GitHub
parent 9766185b07
commit b251911fbc
+7 -11
View File
@@ -18,10 +18,7 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
# Fetch all tags, so semantic-release can calculate the correct next release.
fetch-depth: 0
# Do not remove credentials after checkout.
persist-credentials: false
- uses: volta-cli/action@v4
- run: yarn install --immutable
@@ -34,22 +31,21 @@ jobs:
new-release-version: ${{ steps.get-next-version.outputs.new-release-version }}
new-release-git-tag: ${{ steps.get-next-version.outputs.new-release-git-tag }}
build:
release:
runs-on: ubuntu-latest
needs: get-next-version
if: needs.get-next-version.outputs.new-release-published == 'true'
steps:
- run: echo "The new release version is ${{ needs.get-next-version.outputs.new-release-version }}"
- run: echo "The new release git tag is ${{ needs.get-next-version.outputs.new-release-git-tag }}"
- uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- uses: volta-cli/action@v4
- run: yarn install --immutable
- run: yarn run build
env:
RELEASE_VERSION: ${{ needs.get-next-version.outputs.new-release-version }}
RELEASE_TAG: ${{ needs.get-next-version.outputs.new-release-git-tag }}
release:
runs-on: ubuntu-latest
needs: build
steps:
- uses: thedoctor0/zip-release@0.7.6
with:
type: zip