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:
parent
abf9d267fe
commit
acd0ab94ef
.github/workflows
|
@ -17,7 +17,7 @@ jobs:
|
||||||
uses: vimtor/action-zip@v1.1
|
uses: vimtor/action-zip@v1.1
|
||||||
with:
|
with:
|
||||||
files: out/
|
files: out/
|
||||||
desc: build.zip
|
dest: build.zip
|
||||||
- name: Uploading archive
|
- name: Uploading archive
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in New Issue