Skip to content

Allow renovate to automerge and drop draft flag #57

Allow renovate to automerge and drop draft flag

Allow renovate to automerge and drop draft flag #57

Workflow file for this run

name: Deploy Main to GitHub Pages
on:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build-deploy:
name: Build and Deploy to GitHub Pages
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use Node
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Build website
env:
BASE_URL: /nr-pies
run: npm run build
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: build
branch: gh-pages
clean-exclude: pr-preview/
single-commit: true # Drop unnecessary commit history from gh-pages
force: true # Set to false if we start losing PR deployment previews