1

test deploy

This commit is contained in:
Evan Pratten 2023-08-03 23:33:35 -04:00
parent 52d06a1b89
commit e856e355ea

View File

@ -13,6 +13,10 @@ jobs:
name: Build Docs
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v3
@ -31,4 +35,14 @@ jobs:
BUILD_ONLY: true
- name: Combine Book and Website
run: mkdir -p /tmp/combined && cp -rv docs/website/* /tmp/combined && cp -rv book/ /tmp/combined/book
run: mkdir -p /tmp/combined && cp -rv docs/website/* /tmp/combined && cp -rv target/book/ /tmp/combined/book
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: /tmp/combined
- name: Deploy
uses: actions/deploy-pages@v2
id: deployment
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/ewpratten/reorg2' }}