Merge pull request #70 from sleeyax/chore/update-dependencies #22
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# To test this workflow locally, run the following command: | |
# act --use-gitignore=false | |
name: Release binaries | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build: | |
name: Build and release binaries | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Execute CGO builds using XGO | |
uses: crazy-max/ghaction-xgo@v3 | |
# docs: https://github.com/marketplace/actions/golang-cgo-cross-compiler#inputs | |
with: | |
xgo_version: latest | |
go_version: 1.21 | |
dest: build | |
pkg: cmd | |
prefix: server | |
targets: windows/386,windows/amd64,linux/386,linux/amd64,linux/arm,linux/arm64,darwin/amd64,darwin/arm64 | |
# Prints the build commands as compilation progresses (default false) | |
x: true | |
ldflags: -w | |
buildmode: c-shared | |
working_dir: ./src-go/server | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Build cross-platform jar files | |
shell: sh | |
run: ./build.sh | |
- name: Upload binaries | |
uses: xresloader/upload-to-github-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
file: "./build/libs/*.jar" | |
tags: true | |
draft: true |