Skip to content

Commit

Permalink
fix: add website deployment script (#11)
Browse files Browse the repository at this point in the history
Signed-off-by: Steven E Wright <StevenEWright@users.noreply.github.com>
  • Loading branch information
StevenEWright committed Aug 11, 2023
1 parent 8105abb commit 318b524
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
##.github/workflows/release.yml
name: Website Deployment
on: workflow_dispatch
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v2
- run: ./ci
- run: ./website
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: './docs/'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2

0 comments on commit 318b524

Please sign in to comment.