File tree 1 file changed +17
-17
lines changed
1 file changed +17
-17
lines changed Original file line number Diff line number Diff line change 11
11
name : CI Build
12
12
uses : connorjs/github-workflows/.github/workflows/npm-ci-build~v1.yaml@main
13
13
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
+
14
31
PipelineTests :
15
32
name : Test (${{ matrix.node }} | ${{ matrix.platform.os }})
16
33
defaults :
@@ -90,20 +107,3 @@ jobs:
90
107
# This _could_ be an issue with css-typed, but could be a test/deps issue.
91
108
run : |
92
109
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