Setup new deployment and pr preview deployments (#21) #33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: Deploy to GitHub Pages | |
# Preview PRs via actions/deploy-pages is not available so using JamesIves/github-pages-deploy-action | |
# https://github.com/orgs/community/discussions/7730 | |
on: | |
push: | |
tags: | |
- 'v[0-9]+.[0-9]+.[0-9]+' # ex. v1.0.0 | |
branches: | |
- main | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
contents: write | |
id-token: write | |
# 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: 'deploy-pages' | |
cancel-in-progress: false | |
jobs: | |
# Build job | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Pages | |
uses: actions/configure-pages@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: npm | |
- name: Install dependencies | |
run: npm install | |
- name: Build | |
env: | |
# Deploying to a root domain | |
BASE_PATH: '' | |
run: | | |
npm run build | |
touch build/.nojekyll | |
- name: Deploy to GitHub Pages | |
uses: JamesIves/github-pages-deploy-action@881db5376404c5c8d621010bcbec0310b58d5e29 | |
with: | |
folder: build | |
clean: true | |
clean-exclude: | | |
_pr/** | |
commit-message: Deploy to GitHub Pages | |
- name: Update Job Summary | |
run: | | |
echo "🚀 [https://www.frequency.xyz](https://www.frequency.xyz)" >> $GITHUB_STEP_SUMMARY |