We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7a2fe88 + 4d5dd43 commit 95e1dcdCopy full SHA for 95e1dcd
.github/workflows/ci-fork-mvn-cache.yml
@@ -20,6 +20,7 @@ on:
20
schedule:
21
# first day of month at 12:10am
22
- cron: '10 0 1 * *'
23
+ workflow_dispatch:
24
25
concurrency:
26
group: "workflow = ${{ github.workflow }}, ref = ${{ github.event.ref }}, pr = ${{ github.event.pull_request.id }}"
@@ -55,8 +56,10 @@ jobs:
55
56
# refresh cache every month to avoid unlimited growth
57
key: q2maven-${{ steps.get-date.outputs.date }}
58
- name: Build
59
+ if: steps.cache-maven.outputs.cache-hit != 'true'
60
run: |
61
./mvnw -T1C -e -B --settings .github/mvn-settings.xml -Dquickly-ci -Dtcks clean install
62
- name: Delete Local Artifacts From Cache
63
64
shell: bash
65
run: rm -r ~/.m2/repository/io/quarkus
0 commit comments