Skip to content

Commit 658ca15

Browse files
committed
Fix snapshot workflow
(cherry picked from commit b1915c8)
1 parent 88398e8 commit 658ca15

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/publish-snapshot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ jobs:
88

99
steps:
1010
- uses: actions/checkout@v3
11+
- name: Set up Python
12+
uses: actions/setup-python@v4
13+
with:
14+
python-version: '3.x'
1115
- name: Set up JDK
1216
uses: actions/setup-java@v3
1317
with:
@@ -19,6 +23,8 @@ jobs:
1923
server-password: MAVEN_PASSWORD
2024
gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }}
2125
gpg-passphrase: MAVEN_GPG_PASSPHRASE
26+
- name: Get dependencies
27+
run: make deps
2228
- name: Publish snapshot
2329
run: ./mvnw clean deploy -Psnapshots -DskipITs -DskipTests --no-transfer-progress
2430
env:

0 commit comments

Comments
 (0)