Skip to content

Move to substack

Move to substack #21

Workflow file for this run

name: Publish Gatsby Blog
on:
push:
branches: [ master ]
env:
GH_TOKEN: ${{ secrets.ACCESS_TOKEN }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: GitHub Config
run: |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
run: |
npm install
- name: Deploy
run: npm run deploy:ci