|
|
@@ -62,8 +62,8 @@ jobs:
|
|
|
newVersionCode=$((versionCode + 1))
|
|
|
sed -i "s/versionCode = $versionCode/versionCode = $newVersionCode/" build.gradle.kts
|
|
|
sed -i "s/versionName = \"$versionName\"/versionName = \"$newVersionName\"/" build.gradle.kts
|
|
|
- echo "::set-output name=newVersionName::$newVersionName"
|
|
|
- echo "::set-output name=newVersionCode::$newVersionCode"
|
|
|
+ echo "newVersionName=$newVersionName" >> $GITHUB_OUTPUT
|
|
|
+ echo "newVersionCode=$newVersionCode" >> $GITHUB_OUTPUT
|
|
|
|
|
|
- name: Commit modified version code and make new tag
|
|
|
if: ${{ inputs.auto-bump-version }}
|
|
|
@@ -99,25 +99,23 @@ jobs:
|
|
|
id: real_tag
|
|
|
run: |
|
|
|
if [[ "${{ inputs.auto-bump-version }}" == "true" ]]; then
|
|
|
- echo "::set-output name=tag::v${{ steps.bump-version.outputs.newVersionName }}"
|
|
|
+ echo "tag=v${{ steps.bump-version.outputs.newVersionName }}" >> $GITHUB_OUTPUT
|
|
|
else
|
|
|
- echo "::set-output name=tag::$(git describe --tags --abbrev=0)
|
|
|
+ echo "tag=$(git describe --tags --abbrev=0)" >> $GITHUB_OUTPUT
|
|
|
fi
|
|
|
|
|
|
- name: Tag Repo
|
|
|
uses: richardsimko/update-tag@v1
|
|
|
with:
|
|
|
- tag: ${{ steps.real_tag.outputs.tag }}
|
|
|
tag_name: ${{ steps.real_tag.outputs.tag }}
|
|
|
env:
|
|
|
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
+ GITHUB_TOKEN: ${{ secrets.DEFAULT_TOKEN }}
|
|
|
|
|
|
- name: Upload Release
|
|
|
uses: softprops/action-gh-release@v1
|
|
|
- if: ${{ success() }}
|
|
|
+ if: ${{ success() }}
|
|
|
with:
|
|
|
- tag: ${{ github.ref_name }}
|
|
|
- tag_name: ${{ github.ref_name }}
|
|
|
+ tag_name: ${{ steps.real_tag.outputs.tag }}
|
|
|
files: app/build/outputs/apk/meta/release/*
|
|
|
generate_release_notes: true
|
|
|
|