Skip to content

Commit

Permalink
Cache Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippSchmelter committed Oct 4, 2024
1 parent 8999526 commit 21835f8
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
path: ./
key: simona-${{ github.sha }}

- name: Print
- name: Save Commit SHA
run: |
echo "COMMIT_SHA=${GITHUB_SHA}" >> $GITHUB_ENV
echo "${{ github.sha }}"
Expand All @@ -59,12 +59,15 @@ jobs:
image: gradle:8.10-jdk17

steps:
- name: Print SHA
run: echo "${{ github.sha }}"

- name: Restore project files
uses: actions/cache/restore@v4
id: restore-cache
with:
path: ./
key: ${{ runner.os }}-project-${{ github.sha }}
key: simona-${{ github.sha }}

- name: Checking Gradle & Java
run: |
Expand Down

0 comments on commit 21835f8

Please sign in to comment.