From 38d41db7d1b97d719dc9117feaf1aa8f8bcfd054 Mon Sep 17 00:00:00 2001 From: Andrew Cassidy Date: Thu, 12 Sep 2024 20:57:13 -0700 Subject: [PATCH] debug info --- .github/workflows/internal-test-plugin.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/internal-test-plugin.yml b/.github/workflows/internal-test-plugin.yml index 33bf1b0..a4a11ec 100644 --- a/.github/workflows/internal-test-plugin.yml +++ b/.github/workflows/internal-test-plugin.yml @@ -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 \ No newline at end of file