mirror of
https://github.com/pxb1988/dex2jar.git
synced 2024-11-23 05:10:11 +00:00
get version from GITHUB_REF_NAME (#605)
This commit is contained in:
parent
9510b74dca
commit
b5bda4fb49
7
.github/workflows/gradle.yml
vendored
7
.github/workflows/gradle.yml
vendored
@ -24,11 +24,12 @@ jobs:
|
||||
distribution: 'temurin'
|
||||
cache: 'gradle'
|
||||
- name: Build dex-tools with Gradle
|
||||
run: ./gradlew check distZip
|
||||
run: |
|
||||
./gradlew "-DGITHUB_REF_NAME=${GITHUB_REF_NAME}" check distZip
|
||||
|
||||
- name: Archive dex tools
|
||||
uses: actions/upload-artifact@v3
|
||||
if: success()
|
||||
with:
|
||||
name: dex-tools-2.2-SNAPSHOT
|
||||
path: dex-tools/build/distributions/dex-tools-2.2-SNAPSHOT.zip
|
||||
name: dex-tools
|
||||
path: dex-tools/build/distributions/dex-tools-*.zip
|
||||
|
@ -3,7 +3,7 @@ allprojects {
|
||||
apply plugin: 'idea'
|
||||
apply plugin: 'eclipse'
|
||||
group = 'com.googlecode.d2j'
|
||||
version = '2.2-SNAPSHOT'
|
||||
version = System.getProperty('GITHUB_REF_NAME', '2.x').replaceAll('[/ ]','-')
|
||||
}
|
||||
|
||||
defaultTasks('clean','distZip')
|
||||
|
Loading…
Reference in New Issue
Block a user