github workflows are dumb

This commit is contained in:
lexikiq
2021-05-02 03:26:15 -04:00
parent 3a9772ee2d
commit 5c68be2e61
2 changed files with 12 additions and 12 deletions

View File

@@ -19,6 +19,12 @@ jobs:
with:
java-version: ${{ matrix.java }}
- uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-maven-
- name: Setup eden-api
run: |
git submodule init
@@ -26,12 +32,6 @@ jobs:
cd eden-api && mvn clean install
cd ..
- uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-maven-
- name: Patch Parchment
run: |
git config --global user.email "you@example.com"

View File

@@ -19,6 +19,12 @@ jobs:
with:
java-version: ${{ matrix.java }}
- uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-maven-
- name: Setup eden-api
run: |
git submodule init
@@ -26,12 +32,6 @@ jobs:
cd eden-api && mvn clean install
cd ..
- uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-maven-
- name: Patch Parchment
run: |
git config --global user.email "you@example.com"