Skip to content

Build: Bump up to 2.7. #30

Build: Bump up to 2.7.

Build: Bump up to 2.7. #30

Workflow file for this run

name: "Build"
on:
push:
branches:
- '**'
pull_request:
release:
types:
- published
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
submodules: true
- name: Build
run: |
sudo apt-get update -y && sudo apt-get install -y wget unzip file git openjdk-17-jdk
git submodule foreach git submodule update --init
wget https://dl.google.com/android/repository/commandlinetools-linux-11076708_latest.zip
mkdir sdk
unzip -d sdk commandlinetools-linux-11076708_latest.zip
export ANDROID_HOME=`pwd`/sdk
export ANDROID_SDK_ROOT=`pwd`/sdk
export JAVA_HOME=/usr/lib/jvm/java-17-openjdk-amd64
yes | sdk/cmdline-tools/bin/sdkmanager --sdk_root=`pwd`/sdk --licenses
./gradlew assembleRelease
cp app/build/outputs/apk/release/hev.sockstun-*-release.apk hev.sockstun-${{ github.ref_name }}.apk
- name: Upload
uses: actions/upload-artifact@v4
with:
name: hev.sockstun-${{ github.ref_name }}.apk
path: hev.sockstun-${{ github.ref_name }}.apk
if-no-files-found: error
retention-days: 1
release:
name: Release
runs-on: ubuntu-20.04
needs: build
if: github.event_name == 'release'
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Download artifacts
uses: actions/download-artifact@v4
with:
path: release
pattern: "hev.sockstun-*"
merge-multiple: true
- name: Upload artifacts
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
for i in release/hev.sockstun-*; do
gh release upload ${{ github.event.release.tag_name }} $i
done