Skip to content

Commit

Permalink
minor workflow changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ukorvl committed Aug 10, 2023
1 parent 26dc3d5 commit a11e999
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

publish:
runs-on: ubuntu-latest
needs: [build, ensure_version_changed]
needs: [build]
if: ${{ needs.ensure_version_changed.outputs.version }}
name: Publish to npm
steps:
Expand All @@ -57,7 +57,7 @@ jobs:
tag:
runs-on: ubuntu-latest
needs: [build, ensure_version_changed, publish, release]
needs: [publish]
if: ${{ needs.ensure_version_changed.outputs.version }}
name: Tag
steps:
Expand All @@ -74,7 +74,7 @@ jobs:

release:
runs-on: ubuntu-latest
needs: [build, ensure_version_changed, publish]
needs: [tag]
if: ${{ needs.ensure_version_changed.outputs.version }}
name: Create release
steps:
Expand Down

0 comments on commit a11e999

Please sign in to comment.