From a74bcae60f39a40523b993780836d83769c218f6 Mon Sep 17 00:00:00 2001 From: machaval Date: Tue, 29 Sep 2020 18:12:38 -0300 Subject: [PATCH] Release 1.0.8 --- .github/workflows/main.yml | 7 ++++--- .github/workflows/release.yml | 6 +++--- gradle.properties | 2 +- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d2cdbd0..5816730 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,7 +9,8 @@ on: branches: [ master ] pull_request: branches: [ master ] - +env: + NATIVE_VERSION: 1.0.8 # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: # This workflow contains a single job called "build" @@ -60,5 +61,5 @@ jobs: - name: Upload generated script uses: actions/upload-artifact@v2 with: - name: dw-1.0.3-SNAPSHOT-${{runner.os}}.zip - path: native-cli/build/distributions/native-cli--native-distro-${{ matrix.script_name }}.zip + name: dw-${{env.NATIVE_VERSION}}-${{runner.os}}.zip + path: native-cli/build/distributions/native-cli-${{env.NATIVE_VERSION}}-native-distro-${{ matrix.script_name }}.zip diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f219005..beaccc5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,7 +7,7 @@ on: # A workflow run is made up of one or more jobs that can run sequentially or in parallel env: - NATIVE_VERSION: 1.0.7 + NATIVE_VERSION: 1.0.8 jobs: @@ -44,8 +44,8 @@ jobs: # Runs a set of commands using the runners shell - name: Create Native Image run: | - ./gradlew native-cli:nativeImage -PnativeVersion=${{env.NATIVE_VERSION}} - ./gradlew native-cli:distro -PnativeVersion=${{env.NATIVE_VERSION}} + ./gradlew native-cli:nativeImage + ./gradlew native-cli:distro # Upload the artifact file - name: Upload binaries to release diff --git a/gradle.properties b/gradle.properties index 216acba..2e0acc7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ weaveVersion=2.3.2-SNAPSHOT -nativeVersion=1.0.3-SNAPSHOT +nativeVersion=1.0.8 scalaVersion=2.12.12 graalvmVersion=20.2.0