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 39adaad commit e42d18eCopy full SHA for e42d18e
.github/workflows/deploy.yml
@@ -27,5 +27,17 @@ jobs:
27
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SONATYPE_NEXUS_PASSWORD }}
28
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.SIGNING_KEY }}
29
30
+ - name: Read version from gradle.properties
31
+ id: read_version
32
+ uses: christian-draeger/[email protected]
33
+ with:
34
+ path: './gradle.properties'
35
+ property: 'VERSION_NAME'
36
+
37
+ - name: Create Release
38
+ uses: touchlab/[email protected]
39
40
+ tag: ${{ steps.read_version.outputs.value }}
41
42
env:
43
GRADLE_OPTS: -Dkotlin.incremental=false -Dorg.gradle.jvmargs="-Xmx3g -XX:MaxPermSize=2048m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 -XX:MaxMetaspaceSize=512m"
0 commit comments