Skip to content

Commit

Permalink
debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
drewcassidy committed Sep 13, 2024
1 parent c1ca1de commit 38d41db
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/internal-test-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ jobs:
- name: Compare with zip artifact
run: |
unzip ${{ steps.assemble-release.outputs.artifact-path }} -d zip-artifact
tree github-artifact
tree 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/plugin-mod/PluginMod.pdb ]]; then false; fi # fail if PDB is still present

0 comments on commit 38d41db

Please sign in to comment.