test #5
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
name: Build badges | |
on: | |
push: | |
branches: | |
- main | |
concurrency: building | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/setup-node@v2-beta | |
with: | |
node-version: '16' | |
- name: Build | |
run: | | |
npm version | |
ls | |
npm install --no-save --no-audit | |
npm link | |
badge -v | |
mkdir dist | |
npm run build | |
env: | |
ACCESS_TOKEN: ${{secrets.ACCESS_TOKEN}} | |
- name: Deploy | |
uses: JamesIves/github-pages-deploy-action@v4.2.5 | |
with: | |
single-commit: true | |
branch: docs | |
folder: . |