Skip to content

Commit

Permalink
Add publish script for pba-content
Browse files Browse the repository at this point in the history
  • Loading branch information
wirednkod committed Dec 21, 2023
1 parent a559fa7 commit f655716
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/gh-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: GitHub Pages Publish

on:
push:
branches: [main]

jobs:
gh-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
registry-url: https://registry.npmjs.org
- run: yarn install
- name: Build
working-directory: "."
run: yarn build:pages
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: build

0 comments on commit f655716

Please sign in to comment.