From acd0ab94efbac63095672e5b73b4a031e8df9885 Mon Sep 17 00:00:00 2001 From: Ian Wijma Date: Sun, 19 Nov 2023 15:54:45 +1100 Subject: [PATCH] Correct typo in the build configuration of GitHub workflow Corrected a typo in the build configuration of the GitHub workflow from 'desc' to 'dest' in line 19. This was misnaming the destination file for the zipping process, impeding the correct the creation of 'build.zip' from the files in the 'out' directory. This fix will ensure that the workflow runs as expected and produces a 'build.zip' for the archive upload. --- .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 5e894cc..4a9434c 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -17,7 +17,7 @@ jobs: uses: vimtor/action-zip@v1.1 with: files: out/ - desc: build.zip + dest: build.zip - name: Uploading archive uses: actions/upload-artifact@v3 with: