We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ceceee commit 479b994Copy full SHA for 479b994
1 file changed
action.yml
@@ -98,6 +98,14 @@ runs:
98
restore-keys: |
99
hex-${{ steps.set-shared-cache-key.outputs.shared-cache-key }}-
100
101
+ - name: Restore Rebar build tool cache
102
+ uses: actions/cache@v5
103
+ with:
104
+ path: ~/.cache/rebar3
105
+ key: rebar3-${{ steps.set-shared-cache-key.outputs.shared-cache-key }}-${{ hashFiles('**/mix.lock') }}
106
+ restore-keys: |
107
+ rebar3-${{ steps.set-shared-cache-key.outputs.shared-cache-key }}-
108
+
109
- name: Install Hex package manager
110
if: inputs.install-hex == 'true'
111
run: mix local.hex --force
0 commit comments