Skip to content

Deploy to GitHub pages #8

Deploy to GitHub pages

Deploy to GitHub pages #8

name: Deploy to GitHub pages
on:
push:
branches: [ "master" ]
workflow_dispatch:
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "gh-pages"
cancel-in-progress: false
permissions: {}
jobs:
build:
name: Build site
runs-on: ubuntu-latest
if: github.repository_owner == 'silverstripe'
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Read .nvmrc
id: read-nvm
shell: bash
run: echo "version=$(cat .nvmrc)" >> "$GITHUB_OUTPUT"
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ steps.read-nvm.outputs.version }}
- name: Setup GH pages
id: pages
uses: actions/configure-pages@v5
- name: Build static files
shell: bash
run: |
cat << EOF > .env
VUE_APP_GRAPHQL_ENDPOINT=https://api.github.com/graphql
VUE_APP_GRAPHQL_TOKEN=${{ secrets.GRAPHQL_TOKEN_FOR_GH_PAGES }}
EOF
npm install
npx update-browserslist-db@latest --yes
npm run now-build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: "dist/"
deploy:
name: Deploy site
needs: build
runs-on: ubuntu-latest
if: github.repository_owner == 'silverstripe'
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{steps.deployment.outputs.page_url}}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4