Update README.md #628
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
- 'release/**' | |
pull_request: | |
branches: | |
- main | |
- 'release/**' | |
permissions: | |
contents: write | |
pages: write | |
id-token: write | |
pull-requests: write | |
issues: write | |
statuses: read | |
jobs: | |
nodejs: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install packages | |
run: yarn --frozen-lockfile | |
- name: Run Setup | |
run: node make.js setup | |
- name: Run build | |
run: yarn build | |
- name: Lint | |
run: yarn lint | |
- name: Deploy to NPM | |
if: github.repository_owner == 'Rhosys' && github.ref != 'refs/heads/main' && github.event_name == 'push' | |
run: npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }} | |
- name: After build | |
if: github.repository_owner == 'Rhosys' && github.ref != 'refs/heads/main' && github.event_name == 'push' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: node make.js after_build | |
- name: Create Github Release and Tag | |
if: github.repository_owner == 'Rhosys' && github.ref != 'refs/heads/main' && github.event_name == 'push' | |
run: | | |
git tag ${GITHUB_REF/refs\/heads\/release\//}.$GITHUB_RUN_NUMBER | |
git push origin ${GITHUB_REF/refs\/heads\/release\//}.$GITHUB_RUN_NUMBER | |
deploy: | |
if: github.repository_owner == 'Rhosys' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master') | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Pages | |
uses: actions/configure-pages@v2 | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v1 | |
with: | |
path: 'site' | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v1 |