mirror of
https://github.com/xoureldeen/Vectras-VM-Android.git
synced 2026-04-30 15:29:51 +00:00
85 lines
2.8 KiB
YAML
85 lines
2.8 KiB
YAML
name: Android Release Build
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
release_tag:
|
|
description: 'Release tag for the new version'
|
|
required: true
|
|
default: 'v2.9.3'
|
|
release_notes:
|
|
description: 'Release notes for the new version'
|
|
required: true
|
|
default: 'Initial release'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out the repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up JDK 17
|
|
uses: actions/setup-java@v3
|
|
with:
|
|
distribution: 'zulu'
|
|
java-version: '17'
|
|
|
|
- name: Chmod gradlew
|
|
run: chmod +x ./gradlew
|
|
|
|
- name: Build Android app in release mode
|
|
run: ./gradlew assembleRelease
|
|
|
|
- name: Upload APK
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: app-release.apk
|
|
path: app/build/outputs/apk/release/app-release.apk
|
|
|
|
- name: Download vectras-vm-arm64-v8a.tar.gz
|
|
run: wget -O vectras-vm-arm64-v8a.tar.gz https://github.com/xoureldeen/Vectras-VM-Android/releases/download/v2.9.2/vectras-vm-arm64-v8a.tar.gz
|
|
|
|
- name: Download vectras-vm-x86_64.tar.gz
|
|
run: wget -O vectras-vm-x86_64.tar.gz https://github.com/xoureldeen/Vectras-VM-Android/releases/download/v2.9.2/vectras-vm-x86_64.tar.gz
|
|
|
|
release:
|
|
needs: build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Create Release
|
|
id: create_release
|
|
uses: actions/create-release@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} # Use your personal access token
|
|
with:
|
|
tag_name: ${{ github.event.inputs.release_tag }}
|
|
release_name: Release ${{ github.event.inputs.release_tag }}
|
|
body: ${{ github.event.inputs.release_notes }}
|
|
draft: false
|
|
prerelease: false
|
|
|
|
- name: Upload APK to release
|
|
uses: actions/upload-release-asset@v1
|
|
with:
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
asset_path: app/build/outputs/apk/release/app-release.apk
|
|
asset_name: app-release.apk
|
|
asset_content_type: application/vnd.android.package-archive
|
|
|
|
- name: Upload vectras-vm-arm64-v8a.tar.gz to release
|
|
uses: actions/upload-release-asset@v1
|
|
with:
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
asset_path: vectras-vm-arm64-v8a.tar.gz
|
|
asset_name: vectras-vm-arm64-v8a.tar.gz
|
|
asset_content_type: application/gzip
|
|
|
|
- name: Upload vectras-vm-x86_64.tar.gz to release
|
|
uses: actions/upload-release-asset@v1
|
|
with:
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
asset_path: vectras-vm-x86_64.tar.gz
|
|
asset_name: vectras-vm-x86_64.tar.gz
|
|
asset_content_type: application/gzip
|
|
|