Skip to content

Commit

Permalink
ci: Combine build and release steps
Browse files Browse the repository at this point in the history
  • Loading branch information
dermotduffy committed Sep 15, 2024
1 parent 9766185 commit f775d6d
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions .github/workflows/semantic-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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/[email protected]
with:
type: zip
Expand Down

0 comments on commit f775d6d

Please sign in to comment.