Skip to content

Merge branch 'main' of https://github.com/Senexis/RDO-GG #130

Merge branch 'main' of https://github.com/Senexis/RDO-GG

Merge branch 'main' of https://github.com/Senexis/RDO-GG #130

Workflow file for this run

name: Deploy static content to Pages
on:
workflow_dispatch:
push:
branches: ["main"]
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
deploy:
name: Deploy to GitHub Pages
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- name: Install packages
run: npm install
- name: Run pre-build scripts
run: npm run build:pre
- name: Build website
run: npm run build
- name: Run post-build scripts
run: npm run build:post
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: build
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2