We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bd879c commit 5289fa0Copy full SHA for 5289fa0
2 files changed
.github/workflows/publish.yml
@@ -46,7 +46,7 @@ jobs:
46
GPG_PRIVATE_KEY_PASSWORD: ${{ secrets.GPG_PRIVATE_KEY_PASSWORD }}
47
48
- name: Create GitHub Release
49
- if: github.ref == 'refs/heads/main'
+ if: github.ref == 'refs/heads/main' && !endsWith(steps.release.outputs.released_version, '-SNAPSHOT')
50
run: gh release create "${{ steps.release.outputs.released_version }}" --generate-notes
51
env:
52
GH_TOKEN: ${{ github.token }}
build.gradle
@@ -14,16 +14,16 @@ plugins {
14
id 'signing'
15
}
16
17
-group = 'org.simdjson'
18
-version = scmVersion.version
19
-
20
scmVersion {
21
versionCreator('versionWithBranch')
22
tag {
23
prefix = ''
24
25
26
+group = 'org.simdjson'
+version = scmVersion.version
+
27
repositories {
28
mavenCentral()
29
0 commit comments