We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89bd667 commit badc814Copy full SHA for badc814
1 file changed
.github/workflows/publish-bs3.yml
@@ -13,13 +13,17 @@ jobs:
13
14
steps:
15
- uses: actions/checkout@v2
16
- with:
17
- depth: 0
18
19
- name: Setup Node.js 16.x
20
uses: actions/setup-node@v3.0.0
21
with:
22
node-version: 16.x
+
+ - name: Set package.json version
23
+ uses: HarmvZ/set-package-json-version-action@v0.1.2
24
+ with:
25
+ version: ${{ env.PKG_VERSION_STRICT }}
26
+ path: ./bootstrap
27
28
- name: Build Release
29
working-directory: bootstrap
@@ -28,6 +32,12 @@ jobs:
32
npm ci
33
grunt dist
30
34
35
+ - name: Publish to NPM
36
+ run: npm publish --access public
37
+ working-directory: bootstrap
38
+ env:
39
+ NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
40
31
41
- name: Upload a Build Artifact
42
uses: actions/upload-artifact@v3.0.0
43
0 commit comments