We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ccc856 commit 0c233b2Copy full SHA for 0c233b2
2 files changed
.changeset/yellow-doodles-chew.md
@@ -0,0 +1,5 @@
1
+---
2
+"sorted-queue": patch
3
4
+
5
+Fix publishing workflow conditions
.github/workflows/version-or-publish.yml
@@ -34,6 +34,8 @@ jobs:
34
permissions:
35
contents: write
36
pull-requests: write
37
+ outputs:
38
+ published: ${{ steps.changesets.outputs.published }}
39
steps:
40
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
41
with:
@@ -54,7 +56,7 @@ jobs:
54
56
55
57
build:
58
needs: changesets
- if: needs.release.outputs.published == 'true'
59
+ if: needs.changesets.outputs.published == 'true'
60
runs-on: ubuntu-latest
61
62
contents: read
@@ -81,7 +83,7 @@ jobs:
81
83
needs:
82
84
- changesets
85
- build
86
87
88
89
0 commit comments