Skip to content

Merge pull request #207 from MiggySmallz/fix/nfx-buy-link #207

Merge pull request #207 from MiggySmallz/fix/nfx-buy-link

Merge pull request #207 from MiggySmallz/fix/nfx-buy-link #207

Workflow file for this run

name: Deploy on gh-pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2.1.4
with:
node-version: '14.x'
- name: Cache dependencies
uses: actions/cache@v2.1.3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci
- run: npm run lint
- run: npm run generate
- name: deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist