From e0ed4763fb9ae5f542c8a72bdec4763504f748e5 Mon Sep 17 00:00:00 2001 From: appel_c Date: Tue, 23 Sep 2025 23:22:52 -0500 Subject: [PATCH] fix: add exit code to APT_PACKAGES --- action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/action.yml b/action.yml index ecd8f65..01a6b4e 100644 --- a/action.yml +++ b/action.yml @@ -159,6 +159,8 @@ runs: sudo apt-get update >> $LOG_FILE 2>&1 sudo apt-get install -y ${{ inputs.APT_PACKAGES }} >> $LOG_FILE 2>&1 + echo "Exit Code: 0" >> $LOG_FILE + - name: Setup Python uses: actions/setup-python@v4 with: