From fa8491c58fe3ec02ff5f4c6c9681285f060b26ee Mon Sep 17 00:00:00 2001 From: Matt P <5638426+mattbruv@users.noreply.github.com> Date: Sat, 29 Jun 2024 14:19:03 -0500 Subject: [PATCH] save artifacts --- .github/workflows/build.yml | 2 +- .github/workflows/website.yml | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 72d88dd..d13e095 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -76,5 +76,5 @@ jobs: if: github.ref == 'refs/heads/main' uses: actions/upload-artifact@v4 with: - name: progress.json + name: progress path: progress.json diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index 53cf1b4..ae73910 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -14,9 +14,6 @@ jobs: deploy: runs-on: ubuntu-latest steps: - - uses: actions/setup-dotnet@v4 - with: - dotnet-version: "8.x.x" - name: Checkout website code uses: actions/checkout@v4 with: @@ -26,9 +23,13 @@ jobs: - name: Download artifact uses: actions/download-artifact@v4 with: - name: progress.json + name: progress path: ./website + - uses: actions/setup-dotnet@v4 + with: + dotnet-version: "8.x.x" + - name: Build Website run: | cd website