Skip to content

Commit

Permalink
Merge pull request #148 from Doddddd/patch-1
Browse files Browse the repository at this point in the history
Update build-release workflows
  • Loading branch information
stevejohnson7 authored Oct 23, 2023
2 parents 191c8bc + d6c3ca8 commit 15e0d87
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,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 }}
Expand Down Expand Up @@ -101,9 +101,9 @@ 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
Expand All @@ -115,7 +115,7 @@ jobs:

- name: Upload Release
uses: softprops/action-gh-release@v1
if: ${{ success() }}
if: ${{ success() }}
with:
tag_name: ${{ steps.real_tag.outputs.tag }}
files: app/build/outputs/apk/meta/release/*
Expand Down

0 comments on commit 15e0d87

Please sign in to comment.