mirror of
https://github.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root.git
synced 2025-12-06 08:07:40 +00:00
29 lines
992 B
YAML
29 lines
992 B
YAML
name: Releasing APK files
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Generate release info
|
|
shell: bash
|
|
run: |
|
|
echo "
|
|
**Change log** :point_down:
|
|
[Revanced](https://github.com/revanced/revanced-patches/releases/latest)
|
|
[Revanced Extended](https://github.com/inotia00/revanced-patches/releases/latest)
|
|
[Revanced Extended for Android 6 & 7](https://github.com/kitadai31/revanced-patches-android6-7/releases/latest)
|
|
"> ${{ github.workspace }}-CHANGELOG.txt
|
|
- name: Release
|
|
uses: softprops/action-gh-release@v0.1.15
|
|
with:
|
|
files: |
|
|
./release/*.apk
|
|
name: Revanced & Revanced Extended
|
|
tag_name: all
|
|
body_path: ${{ github.workspace }}-CHANGELOG.txt
|
|
- name: Delete workflow runs
|
|
uses: Mattraks/delete-workflow-runs@v2.0.6
|
|
with:
|
|
token: ${{ github.token }}
|
|
repository: ${{ github.repository }}
|
|
retain_days: 90
|
|
keep_minimum_runs: 999
|