From 4a13dd9fb2e4502220d5e08b96dde3b3cfb21b53 Mon Sep 17 00:00:00 2001 From: Ian Wijma Date: Sun, 19 Nov 2023 15:43:47 +1100 Subject: [PATCH] Update artifact path in GitHub Workflow The artifact path in the GitHub Actions workflow has been updated from 'bin' to 'out'. This alteration occurs in order to match the new directory structure after the build process, ensuring that the correct files are being archived after each workflow run. --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index cd4f102..032ef46 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -15,4 +15,4 @@ jobs: run: npm run build - uses: actions/upload-artifact@v3 with: - path: bin + path: out