Skip to content

Commit

Permalink
fix unzip call
Browse files Browse the repository at this point in the history
  • Loading branch information
drewcassidy committed Sep 13, 2024
1 parent 5ec8bc0 commit c1ca1de
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/internal-test-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:

- name: Compare with zip artifact
run: |
unzip ${{ steps.assemble-release.outputs.artifact-path }} zip-artifact
unzip ${{ steps.assemble-release.outputs.artifact-path }} -d zip-artifact
if [[ $(tree github-artifact) != $(tree zip-artifact) ]]; then false; fi # fail if contents differ
if [[ ! -d github-artifact/GameData ]]; then false; fi # fail if GameData folder isnt present
if [[ ! -d github-artifact/GameData ]]; then false; fi # fail if GameData folder isnt present
if [[ -d github-artifact/GameData/plugin-mod/PluginMod.pdb ]]; then false; fi # fail if PDB is still present

0 comments on commit c1ca1de

Please sign in to comment.