Skip to content

Commit

Permalink
Release 1.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
machaval committed Sep 29, 2020
1 parent b5811cd commit a74bcae
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit a74bcae

Please sign in to comment.