From cda96bee0b1a1101caa01d09913f35bd83fc93c6 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Thu, 1 Dec 2022 11:58:24 -0500 Subject: [PATCH] try to fix bundle sharing --- .github/workflows/publish.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7fd500a..33010c1 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -27,11 +27,26 @@ jobs: - name: Disable Jekyll run: sudo touch ./public/.nojekyll + - name: Publish site as artifact + uses: actions/upload-artifact@v2 + with: + name: website + path: ./public + deploy: runs-on: ubuntu-latest needs: build if: github.ref == 'refs/heads/master' steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Download website bundle + uses: actions/download-artifact@v2 + with: + name: website + path: ./public + - name: Deploy to GitHub Pages if: success() uses: crazy-max/ghaction-github-pages@v2