We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e767c04 commit 68dc86eCopy full SHA for 68dc86e
.github/workflows/release.yml
@@ -23,7 +23,7 @@ jobs:
23
- name: Publish
24
run: ./gradlew publishAllPublicationsToGithubRepository
25
env:
26
- VERSION: ${{ github.ref }}
+ VERSION: ${{ github.ref_name }}
27
- name: Create Release
28
id: create_release
29
uses: softprops/action-gh-release@v1
ariesframework/build.gradle
@@ -82,6 +82,8 @@ if (secretPropsFile.exists()) {
82
ext["version"] = System.getenv("VERSION")
83
}
84
85
+ext["version"] = ext["version"]?.replaceFirst("v", "")
86
+
87
def getExtraString(name) {
88
return ext[name] ?: ""
89
0 commit comments