test deploy
This commit is contained in:
parent
52d06a1b89
commit
e856e355ea
16
.github/workflows/docs.yml
vendored
16
.github/workflows/docs.yml
vendored
@ -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' }}
|
||||
|
Loading…
x
Reference in New Issue
Block a user