From c363547f7261076e07a9d6041f7b4405aee1af28 Mon Sep 17 00:00:00 2001 From: "Waylon S. Walker" Date: Sun, 1 Jan 2023 15:58:01 -0600 Subject: [PATCH] download after build --- .github/workflows/release.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 127e8c3..6e4fd2a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,14 +31,6 @@ jobs: working-directory: ./site steps: - uses: actions/checkout@v2 - - uses: actions/download-artifact@v3 - with: - name: creeper-windows-latest - path: site/static - - uses: actions/download-artifact@v3 - with: - name: creeper-ubuntu-latest - path: site/static - uses: actions/setup-python@v4 with: python-version: '3.10' @@ -46,6 +38,14 @@ jobs: run: pip install hatch - name: build with markata run: hatch run build + - uses: actions/download-artifact@v3 + with: + name: creeper-windows-latest + path: site/markout + - uses: actions/download-artifact@v3 + with: + name: creeper-ubuntu-latest + path: site/markout - name: GitHub Pages uses: crazy-max/ghaction-github-pages@v3.0.0 with: