|
1 |
| -name: Release with Changelog, Build Demo, Deploy to Github Pages, Publish to NPM |
2 |
| -# concat workflows because it is not easy to run trigger multiple. https://docs.github.com/en/actions/using-workflows/triggering-a-workflow#triggering-a-workflow-from-a-workflow |
3 |
| -permissions: |
4 |
| - contents: write |
5 |
| -on: |
6 |
| - push: |
7 |
| - tags: |
8 |
| - - "v*" |
9 |
| - |
10 |
| -jobs: |
11 |
| - build: |
12 |
| - runs-on: ubuntu-latest |
13 |
| - |
14 |
| - steps: |
15 |
| - - name: Checkout Repository |
16 |
| - uses: actions/checkout@v4 |
17 |
| - with: |
18 |
| - fetch-depth: 0 |
19 |
| - |
20 |
| - - name: Set up Node.js |
21 |
| - uses: actions/setup-node@v4 |
22 |
| - with: |
23 |
| - node-version: "20.x" |
24 |
| - registry-url: "https://registry.npmjs.org" |
25 |
| - |
26 |
| - - name: Install |
27 |
| - run: npm install |
28 |
| - |
29 |
| - - name: Release with Changelog |
30 |
| - run: npx changelogithub # or changelogithub@0.12 if ensure the stable result |
31 |
| - continue-on-error: true # failed when only tag pushed |
32 |
| - env: |
33 |
| - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |
34 |
| - |
35 |
| - - name: Build Demo |
36 |
| - run: npm run build:web |
37 |
| - |
38 |
| - - name: Extra Files |
39 |
| - run: | |
40 |
| - # Switch to the generated directory |
41 |
| - cd dist |
42 |
| -
|
43 |
| - # Set custom domain for GitHub Pages |
44 |
| - # echo "youdomain.com" > CNAME |
45 |
| -
|
46 |
| - # Required to bypass Jekyll on GitHub Pages |
47 |
| - echo "" > .nojekyll |
48 |
| -
|
49 |
| - - name: Deploy |
50 |
| - uses: JamesIves/github-pages-deploy-action@v4 |
51 |
| - with: |
52 |
| - single-commit: true |
53 |
| - branch: gh-pages |
54 |
| - clean: true |
55 |
| - folder: dist |
56 |
| - - name: Remove Dist |
57 |
| - run: rm -rf dist |
58 |
| - - name: Build Library |
59 |
| - run: npm run build |
60 |
| - - run: rm -rf node_modules && npm ci |
61 |
| - - run: npm publish |
62 |
| - env: |
63 |
| - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |
| 1 | +# name: Release with Changelog, Build Demo, Deploy to Github Pages, Publish to NPM |
| 2 | +# # concat workflows because it is not easy to run trigger multiple. https://docs.github.com/en/actions/using-workflows/triggering-a-workflow#triggering-a-workflow-from-a-workflow |
| 3 | +# permissions: |
| 4 | +# contents: write |
| 5 | +# on: |
| 6 | +# push: |
| 7 | +# tags: |
| 8 | +# - "v*" |
| 9 | + |
| 10 | +# jobs: |
| 11 | +# build: |
| 12 | +# runs-on: ubuntu-latest |
| 13 | + |
| 14 | +# steps: |
| 15 | +# - name: Checkout Repository |
| 16 | +# uses: actions/checkout@v4 |
| 17 | +# with: |
| 18 | +# fetch-depth: 0 |
| 19 | + |
| 20 | +# - name: Set up Node.js |
| 21 | +# uses: actions/setup-node@v4 |
| 22 | +# with: |
| 23 | +# node-version: "20.x" |
| 24 | +# registry-url: "https://registry.npmjs.org" |
| 25 | + |
| 26 | +# - name: Install |
| 27 | +# run: npm install |
| 28 | + |
| 29 | +# - name: Release with Changelog |
| 30 | +# run: npx changelogithub # or changelogithub@0.12 if ensure the stable result |
| 31 | +# continue-on-error: true # failed when only tag pushed |
| 32 | +# env: |
| 33 | +# GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |
| 34 | + |
| 35 | +# - name: Build Demo |
| 36 | +# run: npm run build:web |
| 37 | + |
| 38 | +# - name: Extra Files |
| 39 | +# run: | |
| 40 | +# # Switch to the generated directory |
| 41 | +# cd dist |
| 42 | + |
| 43 | +# # Set custom domain for GitHub Pages |
| 44 | +# # echo "youdomain.com" > CNAME |
| 45 | + |
| 46 | +# # Required to bypass Jekyll on GitHub Pages |
| 47 | +# echo "" > .nojekyll |
| 48 | + |
| 49 | +# - name: Deploy |
| 50 | +# uses: JamesIves/github-pages-deploy-action@v4 |
| 51 | +# with: |
| 52 | +# single-commit: true |
| 53 | +# branch: gh-pages |
| 54 | +# clean: true |
| 55 | +# folder: dist |
| 56 | +# - name: Remove Dist |
| 57 | +# run: rm -rf dist |
| 58 | +# - name: Build Library |
| 59 | +# run: npm run build |
| 60 | +# - run: rm -rf node_modules && npm ci |
| 61 | +# - run: npm publish |
| 62 | +# env: |
| 63 | +# NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |
0 commit comments