Correct typo in the build configuration of GitHub workflow
Keep Running / Build (push) Failing after 2m57s Details

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.
This commit is contained in:
Ian Wijma 2023-11-19 15:54:45 +11:00
parent abf9d267fe
commit acd0ab94ef
1 changed files with 1 additions and 1 deletions

View File

@ -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: