We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3dc5c77 commit 059040bCopy full SHA for 059040b
3 files changed
.github/workflows/main.yml
@@ -103,20 +103,22 @@ jobs:
103
dist/built/geo.lean.js
104
dist/built/geo.lean.min.js
105
deploy-npm:
106
- if: ${{ startswith(github.ref, 'refs/tags/') }}
+ # if: ${{ startswith(github.ref, 'refs/tags/') }}
107
needs: build
108
runs-on: ubuntu-latest
109
steps:
110
- uses: actions/checkout@v2
111
- uses: actions/setup-node@v2
112
with:
113
node-version: 15.x
114
+ - run: npm ci
115
- name: Import artifacts
116
uses: actions/download-artifact@v2
117
118
name: dist
119
path: dist
- - uses: JS-DevTools/npm-publish@v1
120
- with:
121
- token: ${{ secrets.NPM_TOKEN }}
122
- dry-run: true
+ - name: Release
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
123
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
124
+ run: npx semantic-release
0 commit comments