diff --git a/.github/workflows/lacchain-binary-release.yml b/.github/workflows/lacchain-binary-release.yml new file mode 100644 index 00000000000..0c567d1d147 --- /dev/null +++ b/.github/workflows/lacchain-binary-release.yml @@ -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' \ No newline at end of file diff --git a/.github/workflows/lacchain-release.yml b/.github/workflows/lacchain-docker-release.yml similarity index 96% rename from .github/workflows/lacchain-release.yml rename to .github/workflows/lacchain-docker-release.yml index 769a5584a2f..8a45d0c83bc 100644 --- a/.github/workflows/lacchain-release.yml +++ b/.github/workflows/lacchain-docker-release.yml @@ -1,4 +1,4 @@ -name: release lacchain-besu +name: release lacchain-besu docker on: release: types: released