We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f7c1db2 + cfb90d9 commit d9107a5Copy full SHA for d9107a5
1 file changed
.github/workflows/maven.yml
@@ -10,6 +10,7 @@ on:
10
11
jobs:
12
build:
13
+ if: github.actor != 'flyway-flyway-github-actions[bot]'
14
runs-on: ubuntu-latest
15
permissions:
16
id-token: write
@@ -52,6 +53,9 @@ jobs:
52
53
distribution: 'temurin'
54
cache: 'maven'
55
56
+ - name: Build with Maven
57
+ run: mvn -B install --file pom.xml
58
+
59
- name: Configure Git
60
if: github.ref == 'refs/heads/main'
61
run: |
@@ -88,9 +92,6 @@ jobs:
88
92
git push
89
93
git push --tags
90
94
91
- - name: Build with Maven
- run: mvn -B install --file pom.xml
-
95
- name: Publish to GitHub Packages Apache Maven
96
97
run: mvn -B jar:jar deploy:deploy -Pgithub -s $GITHUB_WORKSPACE/settings.xml -pl '!flyway-community-db-support-archetype'
0 commit comments