We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24339c0 commit 38c075fCopy full SHA for 38c075f
.github/workflows/publish-package.yml
@@ -24,19 +24,19 @@ jobs:
24
node-version: "16.x"
25
cache: 'npm'
26
27
+ - name: install project dependencies
28
+ run: yarn install --frozen-lockfile
29
+
30
+ - name: build project
31
+ run: yarn build
32
33
- run: git config user.email "scottwestover2006@gmail.com"
34
- run: git config user.name "@github-ci"
35
- run: yarn version --patch --message "Bump version to %s"
36
37
- run: git push
38
- run: git push --follow-tags
39
- - name: install project dependencies
- run: yarn install --frozen-lockfile
-
- - name: build project
- run: yarn build
40
- name: publish to npm
41
run: |
42
npm set //registry.npmjs.org/:_authToken ${{ secrets.npm_token }}
0 commit comments