Fix conditionals.

This commit is contained in:
awalsh128 2021-10-16 11:15:06 -07:00
parent 7a02db3b2e
commit d3f2f7ce23

View file

@ -34,12 +34,10 @@ runs:
path: ~/cache-apt-pkgs
key: cache-apt-pkgs_${{ hashFiles('/tmp/package_list.txt') }}
- name: Install and Cache Packages
if: steps.load-pkg-cache.outputs.cache-hit != 'true'
run: ${{ github.action_path }}/install_and_cache.sh ~/cache-apt-pkgs ${{ inputs.packages }}
shell: bash
- name: Restore Cached Packages
if: steps.load-pkg-cache.outputs.cache-hit != 'true'
run: ${{ github.action_path }}/run.sh ~/cache-apt-pkgs /
- name: Load Packages
run: |
if [ ${{ steps.load-pkg-cache.outputs.cache-hit }} == "true" ]; then
${{ github.action_path }}/install_and_cache.sh ~/cache-apt-pkgs ${{ inputs.packages }}
else
${{ github.action_path }}/run.sh ~/cache-apt-pkgs /
shell: bash