Skip to content

Commit

Permalink
add ci cache
Browse files Browse the repository at this point in the history
  • Loading branch information
andyleclair committed Dec 31, 2024
1 parent 020776a commit 50a33cc
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,16 @@ jobs:
with:
otp-version: 27.1.1
elixir-version: 1.18.0
# Set cache up
- uses: actions/cache@v4
id: cache
with:
path: |
deps
_build
key: v1-${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}-${{ hashFiles('**/.tool-versions') }}
restore-keys: |
v1-${{ runner.os }}-mix-
- run: mix deps.get
# Build the site
- run: mix site.build
Expand Down

0 comments on commit 50a33cc

Please sign in to comment.