From b334617c13f0d29684b72b3c9692becace32fe64 Mon Sep 17 00:00:00 2001 From: theofficialgman <28281419+theofficialgman@users.noreply.github.com> Date: Sat, 27 Jan 2024 01:16:59 -0500 Subject: [PATCH] CI: even more debug .git appears to disappear when tarring the directory even thought this should not be possible --- .github/workflows/update_apps.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/update_apps.yml b/.github/workflows/update_apps.yml index 6d6e5e58e3e..59590882d16 100644 --- a/.github/workflows/update_apps.yml +++ b/.github/workflows/update_apps.yml @@ -115,6 +115,11 @@ jobs: - name: Tar GITHUB_WORKSPACE run: | cd ${{ runner.temp }} + # print all files and directories + echo "ls -a" + ls -a + echo "ls -a $GITHUB_WORKSPACE" + ls -a $GITHUB_WORKSPACE tar -C $GITHUB_WORKSPACE -cvf GITHUB_WORKSPACE.tar . - name: Upload GITHUB_WORKSPACE Artifact