Skip to content

Change to src directory #21

Change to src directory

Change to src directory #21

Workflow file for this run

name: Build and Deploy
on:
push:
branches: master
jobs:
build:
name: Build gatsby site
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install Project Dependencies
run: npm ci
- name: Build & deploy
run: npm run build
deploy:
needs: build
name: Deploy gatsby site
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
# Specify runner + deployment step
runs-on: ubuntu-latest
steps:
- name: Configure Pages
uses: actions/configure-pages@v4
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: my-artifact
path: src/
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4 # or specific "vX.X.X" version tag for this action