Update News.js #85
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: Gatsby Publish CI | |
# Controls when the action will run. Triggers the workflow on push or pull request | |
# events but only for the main branch | |
on: | |
push: | |
branches: [ main ] | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
- name: Gatsby Publish | |
# You may pin to the exact commit or the version. | |
# uses: enriikke/gatsby-gh-pages-action@854578ae3c66828334442d16ef54ef814f3a410a | |
uses: enriikke/gatsby-gh-pages-action@v2 | |
with: | |
# A personal access token needed to push your site after it has been built. | |
access-token: ${{ secrets.MILLER_TOKEN }} | |
deploy-branch: deploy | |
gatsby-args: --prefix-paths |