Skip to content

Commit

Permalink
Fix unzip command in deploy workflow
Browse files Browse the repository at this point in the history
The unzip command in the .github/workflows/deploy.yml file was updated. An incorrect parameter '-0' was replaced with the correct '-O' to specify the character encoding to be used. This change should resolve any issues with the unzipping of the artifact during the deploy workflow.

Signed-off-by: Sebastiaan Kloos <sebastiaan@codecycler.com>
  • Loading branch information
SebastiaanKloos committed Dec 18, 2023
1 parent addc173 commit d5b2ea5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
name: docs

- name: Unzip artifact
run: unzip -0 UTF-8 -qq ${{ env.ARTIFACT }} -d dir
run: unzip -O UTF-8 -qq ${{ env.ARTIFACT }} -d dir

- name: Setup Pages
uses: actions/configure-pages@v2
Expand Down

0 comments on commit d5b2ea5

Please sign in to comment.