mirror of
https://github.com/ImranR98/Obtainium.git
synced 2025-07-16 14:46:44 +02:00
Update release.yml
This commit is contained in:
9
.github/workflows/release.yml
vendored
9
.github/workflows/release.yml
vendored
@ -1,4 +1,4 @@
|
|||||||
name: Release (Manual/Draft)
|
name: Release (as Draft)
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
@ -10,7 +10,6 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
|
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- uses: subosito/flutter-action@v2
|
- uses: subosito/flutter-action@v2
|
||||||
|
|
||||||
- name: Import GPG key
|
- name: Import GPG key
|
||||||
@ -54,6 +53,12 @@ jobs:
|
|||||||
echo "::set-output name=tag::$TAG"
|
echo "::set-output name=tag::$TAG"
|
||||||
if [ -n "$(echo $TAG | grep -oP '\-beta$')" ]; then BETA=true; else BETA=false; fi
|
if [ -n "$(echo $TAG | grep -oP '\-beta$')" ]; then BETA=true; else BETA=false; fi
|
||||||
echo "::set-output name=beta::$BETA"
|
echo "::set-output name=beta::$BETA"
|
||||||
|
|
||||||
|
- name: Create Tag
|
||||||
|
uses: laputansoft/github-tag-action@v4.6
|
||||||
|
with:
|
||||||
|
github_token: ${{ secrets.GH_ACCESS_TOKEN }}
|
||||||
|
tag: "${{ steps.extract_version.outputs.tag }}"
|
||||||
|
|
||||||
- name: Create Release And Upload APKs
|
- name: Create Release And Upload APKs
|
||||||
uses: ncipollo/release-action@v1
|
uses: ncipollo/release-action@v1
|
||||||
|
Reference in New Issue
Block a user