1

test deploy

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

View File

@ -4,15 +4,19 @@ on:
pull_request: pull_request:
push: push:
paths: paths:
- ".github/workflows/docs.yml" - ".github/workflows/docs.yml"
- "docs/**" - "docs/**"
- "book.toml" - "book.toml"
jobs: jobs:
build: build:
name: Build Docs name: Build Docs
runs-on: ubuntu-latest runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
@ -31,4 +35,14 @@ jobs:
BUILD_ONLY: true BUILD_ONLY: true
- name: Combine Book and Website - 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' }}