We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79602ff commit 6c371f7Copy full SHA for 6c371f7
.github/workflows/snapshot.yml
@@ -21,6 +21,12 @@ jobs:
21
server-id: central
22
server-username: MAVEN_USERNAME
23
server-password: MAVEN_PASSWORD
24
+ - uses: actions/cache@v3
25
+ with:
26
+ path: ~/.m2/repository
27
+ key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
28
+ restore-keys: |
29
+ ${{ runner.os }}-maven-
30
- run: mvn clean deploy -B -V -e -ntp
31
env:
32
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
0 commit comments