File tree Expand file tree Collapse file tree 1 file changed +17
-17
lines changed Expand file tree Collapse file tree 1 file changed +17
-17
lines changed Original file line number Diff line number Diff line change 1111 name : CI Build
1212 uses : connorjs/github-workflows/.github/workflows/npm-ci-build~v1.yaml@main
1313
14+ Publish :
15+ name : Publish
16+ needs :
17+ - CiBuild # For version variable
18+ - PipelineTests # Requires passing tests
19+
20+ uses : connorjs/github-workflows/.github/workflows/npm-publish~v1.yaml@main
21+ with :
22+ npmPackFilename : ${{ needs.CiBuild.outputs.npmPackFilename }}
23+ semVer : ${{ needs.CiBuild.outputs.semVer }}
24+ secrets :
25+ NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
26+
27+ permissions :
28+ contents : write
29+ id-token : write
30+
1431 PipelineTests :
1532 name : Test (${{ matrix.node }} | ${{ matrix.platform.os }})
1633 defaults :
@@ -90,20 +107,3 @@ jobs:
90107 # This _could_ be an issue with css-typed, but could be a test/deps issue.
91108 run : |
92109 scripts/test.sh foo custom-config-path.config.mjs '-c .config/custom-config-path.config.mjs'
93-
94- Publish :
95- name : Publish
96- needs :
97- - CiBuild # For version variable
98- - PipelineTests # Requires passing tests
99-
100- uses : connorjs/github-workflows/.github/workflows/npm-publish~v1.yaml@main
101- with :
102- npmPackFilename : ${{ needs.CiBuild.outputs.npmPackFilename }}
103- semVer : ${{ needs.CiBuild.outputs.semVer }}
104- secrets :
105- NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
106-
107- permissions :
108- contents : write
109- id-token : write
You can’t perform that action at this time.
0 commit comments