We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d487fb4 commit b7ac723Copy full SHA for b7ac723
.github/workflows/release.yml
@@ -28,7 +28,17 @@ jobs:
28
java-version: '21'
29
distribution: 'corretto'
30
cache: 'maven'
31
-
+
32
+ - name: Cache Maven packages
33
+ uses: actions/cache@v4
34
+ with:
35
+ path: |
36
+ ~/.m2/repository
37
+ !~/.m2/repository/org/devgateway/tcdi
38
+ key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
39
+ restore-keys: |
40
+ ${{ runner.os }}-maven-
41
42
- name: Configure Git user
43
run: |
44
git config user.email "actions@github.com"
0 commit comments