Skip to content

Commit d1bbcc2

Browse files
committed
Minor corrections.
1 parent 0df5055 commit d1bbcc2

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/deploy-snapshot.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ on:
88
push:
99
branches:
1010
- master
11-
- 187-create-mobilitydata-maven-packages # TEMPORARY: remove after testing
1211
workflow_dispatch: # Manual trigger
1312

1413
env:
@@ -70,7 +69,9 @@ jobs:
7069
env:
7170
JRELEASER_GPG_PASSPHRASE: ${{ env.MAVEN_GPG_PASSPHRASE }}
7271
JRELEASER_GPG_SECRET_KEY: ${{ env.MAVEN_GPG_PRIVATE_KEY }}
73-
run: mvn jreleaser:deploy -Djreleaser.output.directory=out -ntp
72+
# -N (non-recursive): run JReleaser only at the root so it uploads a single bundle.
73+
# Without it, JReleaser runs once per module and the second run fails with "already deployed".
74+
run: mvn jreleaser:deploy -Djreleaser.output.directory=out -ntp -N
7475
- name: Upload JReleaser output
7576
if: always()
7677
uses: actions/upload-artifact@v4

gbfs-validator-java/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
</parent>
1010

1111
<artifactId>gbfs-validator-java</artifactId>
12-
<version>0.0.0-placeholder</version>
1312
<packaging>jar</packaging>
1413

1514
<name>gbfs-validator-java</name>

0 commit comments

Comments
 (0)