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 17e35fe commit c357cd8Copy full SHA for c357cd8
.github/workflows/main-ci.yml
@@ -64,12 +64,14 @@ jobs:
64
run: pnpm run changelog:apply
65
66
build:
67
+ needs: [changelog-apply]
68
uses: ./.github/workflows/reusable-build.yml
69
with:
70
artifact_name: ${{ vars.ARTIFACT_NAME }}
71
artifact_path: ${{ vars.ARTIFACT_PATH }}
72
73
publish:
74
+ needs: [build]
75
uses: ./.github/workflows/reusable-publish.yml
76
77
.github/workflows/reusable-publish.yml
@@ -42,5 +42,5 @@ jobs:
42
name: ${{ inputs.artifact_name }}
43
path: ${{ inputs.artifact_path }}
44
45
- - name: Publish
46
- run: pnpm publish --access public --no-git-checks
+ # - name: Publish
+ # run: pnpm publish --access public --no-git-checks
0 commit comments