Skip to content

Commit 293d99d

Browse files
committed
ci, not i
1 parent 41cd7c3 commit 293d99d

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

.github/workflows/pipeline.yaml

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ jobs:
1313

1414
PipelineTests:
1515
name: Test (${{ matrix.node }} | ${{ matrix.platform.os }})
16-
if: false
1716
defaults:
1817
run:
1918
shell: bash
@@ -94,7 +93,7 @@ jobs:
9493
9594
Publish:
9695
name: Publish
97-
if: ${{ github.ref == 'refs/heads/main' }}
96+
# if: ${{ github.ref == 'refs/heads/main' }}
9897
needs:
9998
- CiBuild # For version variable
10099
- PipelineTests # Requires passing tests
@@ -117,14 +116,16 @@ jobs:
117116
run: sed -i 's/0.0.0-gitversion/${{ env.semVer }}/g' package.json
118117

119118
- 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 }}

0 commit comments

Comments
 (0)