Skip to content

Commit

Permalink
update yml
Browse files Browse the repository at this point in the history
  • Loading branch information
TinyHai committed Mar 29, 2024
1 parent 89cc6df commit cb1c6bf
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
13 changes: 12 additions & 1 deletion .github/workflows/manual_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,23 @@ jobs:
name: BanUninstall
path: app/build/outputs/apk/release/*.apk

- name: Release
- name: Release to current repository
uses: softprops/action-gh-release@v2
with:
name: BanUninstall
tag_name: ${{ env.TAG_NAME }}
draft: true
token: ${{ secrets.CUSTOM_GITHUB_TOKEN }}
files: |
app/build/outputs/apk/release/*.apk
- name: Release to xposed module repository
uses: softprops/action-gh-release@v2
with:
name: ${{ format('BanUninstall_{0}', env.TAG_NAME) }}
tag_name: ${{ env.TAG_NAME }}
draft: true
repository: Xposed-Modules-Repo/cn.tinyhai.ban_uninstall
token: ${{ secrets.CUSTOM_GITHUB_TOKEN }}
files: |
app/build/outputs/apk/release/*.apk
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ dependencyResolutionManagement {
}
}

rootProject.name = "禁止卸载"
rootProject.name = "BanUninstall"
include(":app")
include(":hiddenApi")

0 comments on commit cb1c6bf

Please sign in to comment.