32 lines
632 B
YAML
32 lines
632 B
YAML
name: Gatsby Publish
|
|
|
|
# on:
|
|
# push:
|
|
# branches: main
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [14.17.0]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
cache: npm
|
|
|
|
- name: Check prettier offences
|
|
run: npm run lint
|
|
|
|
- uses: enriikke/gatsby-gh-pages-action@v2
|
|
with:
|
|
access-token: ${{ secrets.DCSITE }}
|
|
deploy-branch: gh-pages
|
|
gatsby-args: --prefix-paths
|