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 0117890 commit 742355cCopy full SHA for 742355c
.github/workflows/CD.yml
@@ -7,7 +7,7 @@ on:
7
concurrency: cd-${{ github.ref }}
8
9
jobs:
10
- deploy:
+ gh-pages:
11
runs-on: ubuntu-latest
12
steps:
13
- uses: P5-wrapper/setup-action@v1
@@ -21,3 +21,16 @@ jobs:
21
uses: JamesIves/github-pages-deploy-action@v4
22
with:
23
folder: dist/demo
24
+
25
+ npm:
26
+ runs-on: ubuntu-latest
27
+ steps:
28
+ - uses: P5-wrapper/setup-action@v1
29
+ with:
30
+ token: ${{ secrets.GH_TOKEN }}
31
32
+ - uses: JS-DevTools/npm-publish@v1
33
34
+ token: ${{ secrets.NPM_TOKEN }}
35
+ # TODO: remove the dry run declaration after testing CD doesn't throw
36
+ dry-run: true
0 commit comments