diff options
| author | vincent van beek <vincent@vlogic.nl> | 2026-04-24 13:56:00 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-04-24 12:56:00 +0100 |
| commit | 14e0a8fd764048a995ba742753afd6c930d3ea0f (patch) | |
| tree | 0a82fbd3eca2b9c20528013b650a820bfb297d74 /.github/workflows/publish.yml | |
| parent | 66a88abfdced0924eebb7b28d12bf8cd468ff7d4 (diff) | |
fix version format without double quotes (#411)
Diffstat (limited to '.github/workflows/publish.yml')
| -rw-r--r-- | .github/workflows/publish.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 315ab9d4..5f690253 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -81,7 +81,7 @@ jobs: - name: Publish with Gradle uses: gradle/actions/setup-gradle@v3 with: - arguments: publishAggregationToCentralPortal -Pversion="${{ steps.prep.outputs.version }}" + arguments: publishAggregationToCentralPortal -Pversion=${{ steps.prep.outputs.version }} env: ORG_GRADLE_PROJECT_signingKey: ${{ secrets.GPG_PRIVATE_KEY }} ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.GPG_PASSPHRASE }} |
