Skip to content

Commit

Permalink
[BLD]: cache Tilt images between runs
Browse files Browse the repository at this point in the history
  • Loading branch information
codetheweb committed Dec 13, 2024
1 parent 2300135 commit 8655703
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/actions/tilt/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ description: "This action starts Tilt services"
runs:
using: "composite"
steps:
- name: Cache image layers
uses: actions/cache@v4
with:
path: /home/runner/.docker
key: ${{ runner.os }}-docker-${{ hashFiles('**/Dockerfile', 'Tiltfile') }}
restore-keys: |
${{ runner.os }}-docker-
- name: Install Tilt
shell: bash
run: |
Expand Down

0 comments on commit 8655703

Please sign in to comment.