Skip to content

Commit

Permalink
back to normal
Browse files Browse the repository at this point in the history
  • Loading branch information
connorjs committed Aug 5, 2024
1 parent 293d99d commit 5709b7d
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions .github/workflows/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
Publish:
name: Publish
# if: ${{ github.ref == 'refs/heads/main' }}
if: ${{ github.ref == 'refs/heads/main' }}
needs:
- CiBuild # For version variable
- PipelineTests # Requires passing tests
Expand All @@ -118,14 +118,12 @@ jobs:
- name: Install
run: npm ci

- name: Pack
run: npm pack
# - name: Publish
# run: npm publish --provenance --access public
# env:
# NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
#
# - name: git tag
# run: |
# git tag v${{ env.semVer }}
# git push origin tag v${{ env.semVer }}
- name: Publish
run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: git tag
run: |
git tag v${{ env.semVer }}
git push origin tag v${{ env.semVer }}

0 comments on commit 5709b7d

Please sign in to comment.