2021-10-13 21:11:27 -07:00
name : 'Cache APT Packages'
description : 'Install APT based packages and cache them for future runs.'
author : awalsh128
2021-10-13 22:16:32 -07:00
branding :
icon : 'hard-drive'
color : 'green'
2021-10-13 21:11:27 -07:00
inputs :
packages :
description : 'Space delimited list of packages to install.'
required : true
default : ''
2021-10-16 11:34:03 -07:00
version :
description : 'Version will create a new cache and install packages.'
required : false
2021-10-21 15:44:19 -07:00
default : ''
refresh :
description : 'Option to refresh / upgrade the packages in the same cache.'
required : false
default : 'false'
2021-10-13 21:11:27 -07:00
outputs :
cache-hit :
description : 'A boolean value to indicate a cache was found for the packages requested.'
2021-10-16 21:17:41 -07:00
# This compound expression is needed because lhs can be empty.
# Need to output true and false instead of true and nothing.
2021-10-16 13:16:36 -07:00
value : ${{ steps.load-cache.outputs.cache-hit || false }}
2021-10-21 20:57:52 -07:00
package-version-list :
2021-10-21 15:44:19 -07:00
description : 'The packages and versions that are installed as a comma delimited list with colon delimit on the package version (i.e. <package>:<version,<package>:<version>).'
2021-10-21 20:57:52 -07:00
value : ${{ steps.post-cache.outputs.package-version-list }}
2021-10-13 21:11:27 -07:00
runs :
using : "composite"
steps :
2021-10-21 20:57:52 -07:00
- id : pre-cache
2021-10-16 22:02:56 -07:00
run : |
2021-10-21 21:13:01 -07:00
${{ github.action_path }}/pre_cache_action.sh \
~/cache-apt-pkgs \
"${{ inputs.version }}" \
${{ inputs.packages }}
2021-10-21 20:57:52 -07:00
echo "CACHE_KEY=$(cat ~/cache-apt-pkgs/cache_key.md5)" >> $GITHUB_ENV
2021-10-13 21:11:27 -07:00
shell : bash
2021-10-21 20:57:52 -07:00
- id : load-cache
2021-10-13 21:11:27 -07:00
uses : actions/cache@v2
with :
path : ~/cache-apt-pkgs
2021-10-16 22:02:56 -07:00
key : cache-apt-pkgs_${{ env.CACHE_KEY }}
2021-10-13 21:11:27 -07:00
2021-10-21 20:57:52 -07:00
- id : post-cache
2021-10-21 15:44:19 -07:00
run : |
2021-10-21 21:03:30 -07:00
${{ github.action_path }}/post_cache_action.sh \
~/cache-apt-pkgs / \
"${{ steps.load-cache.outputs.cache-hit }}" \
"${{ inputs.refresh }}" \
"${{ inputs.version }}" \
${{ inputs.packages }}
2021-10-21 20:57:52 -07:00
echo "::set-output name=package-version-list::$(cat ~/cache-apt-pkgs/manifest.log)"
2021-10-21 15:44:19 -07:00
shell : bash