We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4de1158 commit e07e941Copy full SHA for e07e941
.github/workflows/release.yml
@@ -16,8 +16,13 @@ jobs:
16
steps:
17
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
18
- uses: actions/checkout@v2
19
-
20
# Runs a single command using the runners shell
+ - name: Cache Maven packages
21
+ uses: actions/cache@v2
22
+ with:
23
+ path: ~/.m2
24
+ key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
25
+ restore-keys: ${{ runner.os }}-m2
26
- name: Maven Build
27
run: mvn package -Dmdep.skip
28
- name: Upload to release
0 commit comments