Skip to content

Commit

Permalink
Add wiki
Browse files Browse the repository at this point in the history
  • Loading branch information
smguggen committed Jul 11, 2023
1 parent d26b72c commit f85d994
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/wiki.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Package Artifacts

on:
push:
branches: [ "wiki" ]

concurrency:
group: ${{ github.ref }}

jobs:
update-wiki:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build
run: |
npm ci
npm run docs
- name: Update
run: ./.github/scripts/update-wiki.sh
env:
WIKI_DIR: 'wiki'
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit f85d994

Please sign in to comment.