You've already forked KernelSU-Next
mirror of
https://github.com/KernelSU-Next/KernelSU-Next.git
synced 2025-08-27 23:46:34 +00:00
29 lines
539 B
YAML
29 lines
539 B
YAML
name: Release
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build-manager:
|
|
uses: ./.github/workflows/build-manager.yml
|
|
secrets: inherit
|
|
release:
|
|
needs:
|
|
- build-manager
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Download artifacts
|
|
uses: actions/download-artifact@v4
|
|
|
|
- name: Display structure of downloaded files
|
|
run: ls -R
|
|
|
|
- name: release
|
|
uses: softprops/action-gh-release@v2
|
|
with:
|
|
files: |
|
|
manager/*.apk
|
|
ksud-*
|