From e856e355ea0b076e106c80ad8c5acc678e1342ab Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Thu, 3 Aug 2023 23:33:35 -0400 Subject: [PATCH] test deploy --- .github/workflows/docs.yml | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 89433c7..72e27e5 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -4,15 +4,19 @@ on: pull_request: push: paths: - - ".github/workflows/docs.yml" - - "docs/**" - - "book.toml" + - ".github/workflows/docs.yml" + - "docs/**" + - "book.toml" jobs: build: 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' }}