File tree 1 file changed +14
-13
lines changed
1 file changed +14
-13
lines changed Original file line number Diff line number Diff line change 13
13
14
14
PipelineTests :
15
15
name : Test (${{ matrix.node }} | ${{ matrix.platform.os }})
16
- if : false
17
16
defaults :
18
17
run :
19
18
shell : bash
94
93
95
94
Publish :
96
95
name : Publish
97
- if : ${{ github.ref == 'refs/heads/main' }}
96
+ # if: ${{ github.ref == 'refs/heads/main' }}
98
97
needs :
99
98
- CiBuild # For version variable
100
99
- PipelineTests # Requires passing tests
@@ -117,14 +116,16 @@ jobs:
117
116
run : sed -i 's/0.0.0-gitversion/${{ env.semVer }}/g' package.json
118
117
119
118
- name : Install
120
- run : npm install
121
-
122
- - name : Publish
123
- run : npm publish --provenance --access public
124
- env :
125
- NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
126
-
127
- - name : git tag
128
- run : |
129
- git tag v${{ env.semVer }}
130
- git push origin tag v${{ env.semVer }}
119
+ run : npm ci
120
+
121
+ - name : Pack
122
+ run : npm pack
123
+ # - name: Publish
124
+ # run: npm publish --provenance --access public
125
+ # env:
126
+ # NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
127
+ #
128
+ # - name: git tag
129
+ # run: |
130
+ # git tag v${{ env.semVer }}
131
+ # git push origin tag v${{ env.semVer }}
You can’t perform that action at this time.
0 commit comments