Skip to content

CI workflows overhaul: Add bot vars for semantic release #8

CI workflows overhaul: Add bot vars for semantic release

CI workflows overhaul: Add bot vars for semantic release #8

name: Deploy to GitHub Pages
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
deploy-gh-pages:
name: Deploying to GitHub Pages
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Setup Node
uses: actions/[email protected]
with:
node-version: 20.8.1
- run: sudo npm install -g yarn
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Build and deploy with gh-pages
run: |
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
yarn deploy -- -u "github-actions-bot <[email protected]>"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}