mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-01-09 20:29:10 +00:00
feat: create github release for android
This commit is contained in:
parent
ce489f2371
commit
f0746a3520
1 changed files with 8 additions and 4 deletions
12
.github/workflows/android.yaml
vendored
12
.github/workflows/android.yaml
vendored
|
@ -23,9 +23,13 @@ jobs:
|
||||||
- name: Build routine
|
- name: Build routine
|
||||||
run: "chmod +x package/android/build.sh && package/android/build.sh"
|
run: "chmod +x package/android/build.sh && package/android/build.sh"
|
||||||
|
|
||||||
- name: Create build artifacts
|
- name: Create release
|
||||||
uses: actions/upload-artifact@v3
|
uses: "marvinpinto/action-automatic-releases@latest"
|
||||||
with:
|
with:
|
||||||
name: lune-$LUNE_VERSION-aarch64-linux-android.zip
|
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
path: lune-aarch64-linux-android.zip
|
automatic_release_tag: "$LUNE_VERSION"
|
||||||
|
draft: true
|
||||||
|
title: "Lune $LUNE_VERSION (Android)"
|
||||||
|
files: |
|
||||||
|
lune-src/lune-*.zip
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue