Update manuf link to a working one from the old one is broken #439
Workflow file for this run
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/Test/Deploy | |
on: | |
push: | |
branches-ignore: | |
- gh-pages | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
build: | |
name: Build and Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
# with: | |
# persist-credentials: false | |
- name: Install | |
run: npm ci | |
- name: Build | |
run: npm run build | |
- name: Deploy | |
uses: JamesIves/[email protected] | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master'}} | |
with: | |
token: ${{ secrets.ACCESS_TOKEN }} | |
folder: .vuepress/dist/ | |
clean: true | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Install | |
run: npm ci | |
- name: Lint | |
run: npm run lint-ci |