Skip to content

Merge pull request #29 from meese-enterprises/new-direction #29

Merge pull request #29 from meese-enterprises/new-direction

Merge pull request #29 from meese-enterprises/new-direction #29

Workflow file for this run

name: master
on:
workflow_dispatch:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Read .nvmrc
id: node_version
run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc)
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: ${{ steps.node_version.outputs.NODE_VERSION }}
- run: yarn install --frozen-lockfile
- uses: meese-enterprises/gatsby-publish-without-jekyll@v2
with:
access-token: ${{ secrets.GH_ACCESS_TOKEN }}
deploy-branch: gh-pages
env:
CONTENTFUL_ACCESS_TOKEN: ${{secrets.CONTENTFUL_ACCESS_TOKEN}}
CONTENTFUL_SPACE_ID: ${{secrets.CONTENTFUL_SPACE_ID}}