From 132be8a4507c284e847abd3fbb2f7a35124f8e14 Mon Sep 17 00:00:00 2001 From: awalsh128 Date: Sat, 16 Oct 2021 11:19:36 -0700 Subject: [PATCH] More fixes. Gotta love not having tests. directly for GitHub actions. --- action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index fb76c9e..b91c667 100644 --- a/action.yml +++ b/action.yml @@ -36,8 +36,9 @@ runs: - name: Load Packages run: | - if [ ${{ steps.load-pkg-cache.outputs.cache-hit }} == "true" ]; then + if [ ${{ steps.load-pkg-cache.outputs.cache-hit }} ]; then ${{ github.action_path }}/install_and_cache.sh ~/cache-apt-pkgs ${{ inputs.packages }} else ${{ github.action_path }}/run.sh ~/cache-apt-pkgs / + fi shell: bash