From c29b0d7f9aad4d97f6842f1b6109ad6200623b42 Mon Sep 17 00:00:00 2001 From: awalsh128 Date: Sat, 16 Oct 2021 11:22:48 -0700 Subject: [PATCH] Fix script reference. --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index b91c667..eba9cd5 100644 --- a/action.yml +++ b/action.yml @@ -37,8 +37,8 @@ runs: - name: Load Packages run: | if [ ${{ steps.load-pkg-cache.outputs.cache-hit }} ]; then - ${{ github.action_path }}/install_and_cache.sh ~/cache-apt-pkgs ${{ inputs.packages }} + ${{ github.action_path }}/restore_pkgs.sh ~/cache-apt-pkgs / else - ${{ github.action_path }}/run.sh ~/cache-apt-pkgs / + ${{ github.action_path }}/install_and_cache.sh ~/cache-apt-pkgs ${{ inputs.packages }} fi shell: bash