Skip to content

Commit

Permalink
add workflow to create binaries with java-17
Browse files Browse the repository at this point in the history
  • Loading branch information
eum602 committed Oct 3, 2023
1 parent 3629559 commit fb5a78d
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions .github/workflows/lacchain-binary-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: release lacchain-besu binary
on:
release:
types: released
workflow_dispatch:
jobs:
binaryPromoteX64:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'

- name: Setup Gradle
uses: gradle/gradle-build-action@v2

- name: Upload the artifacts
uses: skx/github-action-publish-binaries@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: 'build/distributions'
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: release lacchain-besu
name: release lacchain-besu docker
on:
release:
types: released
Expand Down

0 comments on commit fb5a78d

Please sign in to comment.