Skip to content

GH Actions build fatJar before building Rust client. #17

GH Actions build fatJar before building Rust client.

GH Actions build fatJar before building Rust client. #17

Workflow file for this run

name: Release
on:
push:
tags:
- v[0-9]+.*
jobs:
create-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 17
- uses: eskatos/gradle-command-action@v1
with:
arguments: fatJar
- uses: actions/upload-artifact@master
with:
name: fatjar
path: jgrab-runner/build/libs
if-no-files-found: error
- uses: taiki-e/create-gh-release-action@v1
with:
changelog: CHANGELOG.MD
branch: master
draft: true
token: ${{ secrets.GITHUB_TOKEN }}
upload-assets:
needs: create-release
strategy:
matrix:
include:
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
build-tool: cargo-zigbuild
- target: aarch64-unknown-linux-gnu
os: ubuntu-latest
build-tool: cargo-zigbuild
- target: aarch64-apple-darwin
os: macos-latest
build-tool: cargo-zigbuild
- target: x86_64-apple-darwin
os: macos-latest
build-tool: cargo-zigbuild
- target: x86_64-pc-windows-msvc
os: windows-latest
build-tool: cargo
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: goto-bus-stop/setup-zig@v2
- name: Install cargo-zigbuild
run: cargo install cargo-zigbuild
- uses: actions/download-artifact@master
with:
name: fatjar
path: jgrab-runner/build/libs
- name: Display structure of downloaded files
run: ls -R jgrab-runner/build
- uses: taiki-e/upload-rust-binary-action@v1
with:
manifest-path: ./jgrab-client/Cargo.toml
bin: jgrab-client
target: ${{ matrix.target }}
build-tool: ${{ matrix.build-tool }}
token: ${{ secrets.GITHUB_TOKEN }}