Skip to content

Commit

Permalink
adding custom GHActions and changing publishing path
Browse files Browse the repository at this point in the history
  • Loading branch information
MattReimer committed Dec 14, 2023
1 parent 4d87dc0 commit 686c8a9
Show file tree
Hide file tree
Showing 2 changed files with 84 additions and 2 deletions.
83 changes: 83 additions & 0 deletions .github/workflows/pages-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
name: Gatsby GHPages Publish
# NOTE: This is designed to work for a site living in the /docs folder. You'll need to make changes if it is not.
on:
push:
branches:
- docs

concurrency:
group: "pages"
cancel-in-progress: true


# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Default to bash
defaults:
run:
shell: bash

jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: ./docs/.nvmrc
cache-dependency-path: ./docs/package.json
cache: yarn

- name: Setup Pages
id: pages
uses: actions/configure-pages@v3
with:
# Automatically inject pathPrefix in your Gatsby configuration file.
#
# You may remove this line if you want to manage the configuration yourself.
static_site_generator: gatsby

- name: Restore cache
uses: actions/cache@v3
with:
path: |
./docs/public
./docs/.cache
key: ${{ runner.os }}-gatsby-build-${{ hashFiles('public') }}
restore-keys: |
${{ runner.os }}-gatsby-build-
- name: Install dependencies
working-directory: ./docs
run: yarn install

- name: Build with Gatsby
working-directory: ./docs
env:
PREFIX_PATHS: 'true'
run: yarn run build

- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./docs/public

# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
3 changes: 1 addition & 2 deletions docs/gatsby-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ module.exports = {
// You need pathPrefix if you're hosting GitHub Pages at a Project Pages or if your
// site will live at a subdirectory like https://example.com/mypathprefix/.
// pathPrefix: '/mypathprefix',
pathPrefix: '/riverscapes-template',
siteMetadata: {
title: `QRiS`,
author: {
Expand Down Expand Up @@ -111,7 +110,7 @@ module.exports = {
manifest: {
name: `Riverscapes Gatsby Template Site`,
short_name: `RiverscapesTemplate`,
start_url: `/riverscapes-template`,
start_url: `/`,
},
},
},
Expand Down

0 comments on commit 686c8a9

Please sign in to comment.