Build #11
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
name: Build | |
on: | |
workflow_dispatch: | |
inputs: | |
release_tag: | |
required: true | |
type: string | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Golang | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: 'go.mod' | |
- name: Setup JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: 'temurin' | |
- name: Setup Android SDK Tools | |
uses: android-actions/setup-android@v3.2.0 | |
with: | |
cmdline-tools-version: 10406996 | |
- name: Setup Android NDK | |
uses: nttld/setup-ndk@v1.4.2 | |
with: | |
ndk-version: 'r26b' | |
link-to-sdk: true | |
- name: Setup Go Mobile | |
run: | | |
go install golang.org/x/mobile/cmd/gomobile@latest | |
export PATH=$PATH:~/go/bin | |
- name: Build | |
run: | | |
mkdir -p assets data | |
bash gen_assets.sh download | |
cp -v data/*.dat assets/ | |
gomobile init | |
go mod tidy | |
gomobile bind -v -androidapi 21 -ldflags='-s -w' ./ | |
- name: Upload AndroidLibXrayLite to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
file: ./libv2ray*r | |
tag: ${{ github.event.inputs.release_tag }} | |
file_glob: true |