Skip to content

Commit

Permalink
Bust cache
Browse files Browse the repository at this point in the history
  • Loading branch information
helpermethod committed Jun 26, 2021
1 parent 759c58e commit d34133e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: mvn-${{hashFiles('pom.xml')}}
key: ${{ runner.os }}-mvn-${{hashFiles('pom.xml')}}
restore-keys: |
mvn-
${{ runner.os }}-mvn-
- name: Build
run: ./mvnw --batch-mode verify
- name: Upload code coverage
Expand Down Expand Up @@ -70,9 +70,9 @@ jobs:
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: mvn-${{ hashFiles('pom.xml') }}
key: ${{ runner.os }}-mvn-${{ hashFiles('pom.xml') }}
restore-keys: |
mvn-
${{ runner.os }}-mvn-
- name: Build
run: |
./mvnw --batch-mode --activate-profiles assemble -Drevision=${{ github.event.inputs.version }} verify
Expand Down Expand Up @@ -107,9 +107,9 @@ jobs:
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: mvn-${{ hashFiles('pom.xml') }}
key: ${{ runner.os }}-mvn-${{ hashFiles('pom.xml') }}
restore-keys: |
mvn-
${{ runner.os }}-mvn-
- name: Build
run: |
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Auxiliary\Build\vcvars64.bat"
Expand Down

0 comments on commit d34133e

Please sign in to comment.