Skip to content

Commit

Permalink
add back pages workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
marcustyphoon committed Oct 10, 2024
1 parent 1bb60fe commit a199701
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/gh-pages-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Update gh-pages

on:
push:
branches:
- 'master'
paths:
- 'Extensions/dist/'

jobs:
build:
name: Update gh-pages
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: lts/*

- name: Install dependencies
run: npm ci

- name: Update gh-pages
run: npx gh-pages --add --dist . --src "Extensions/dist/"

0 comments on commit a199701

Please sign in to comment.