Skip to content

Commit

Permalink
adding JVM information to release
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Harrington committed Jun 10, 2024
1 parent b756e98 commit f87d723
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,15 @@ jobs:
tag_name: ${{ github.ref }}
env:
GITHUB_TOKEN: ${{ github.token }}

- name: upload JVM Configuration
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: jvm.json
asset_name: jvm.json
asset_content_type: application/json
- name: upload BowlerStudio artifact
uses: actions/upload-release-asset@v1
env:
Expand Down
34 changes: 34 additions & 0 deletions jvm.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"Linux-x64":{
"url":"https://cdn.azul.com/zulu/bin/"
,
"type":"tar.gz",
"name":"zulu8.78.0.19-ca-fx-jdk8.0.412-linux_x64"
},
"Linux-aarch64":{
"url":"https://cdn.azul.com/zulu/bin/.tar.gz"
,
"type":"tar.gz",
"name":"zulu8.78.0.19-ca-fx-jdk8.0.412-linux_aarch64"

},
"Windows-x64":{
"url":"https://cdn.azul.com/zulu/bin/"
,
"type":"zip",
"name":"zulu8.78.0.19-ca-fx-jdk8.0.412-win_x64"
},
"Mac-x64":{
"url":"https://cdn.azul.com/zulu/bin/"
,
"type":"zip",
"name":"zulu8.78.0.19-ca-fx-jdk8.0.412-macosx_x64"
},
"Mac-aarch64":{
"url":"https://cdn.azul.com/zulu/bin/"
,
"type":"zip",
"name":"zulu8.78.0.19-ca-fx-jdk8.0.412-macosx_aarch64"
}

}

0 comments on commit f87d723

Please sign in to comment.