Skip to content

Commit

Permalink
feat: Add "v" as version tag prefix in "release" action
Browse files Browse the repository at this point in the history
  • Loading branch information
akexorcist committed Sep 10, 2024
1 parent a9afc02 commit 23cb62e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
workflow_dispatch:
inputs:
version:
description: "The app version to be release"
required: true
jobs:
build-and-test:
Expand Down Expand Up @@ -52,7 +53,7 @@ jobs:
- name: Create a release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ github.event.inputs.version }}
tag_name: "v${{ github.event.inputs.version }}"
files: |
app/build/outputs/apk/release/app-release.apk
- name: Bump version code
Expand Down

0 comments on commit 23cb62e

Please sign in to comment.