Skip to content

Commit

Permalink
fixed release version pattern used for OTA releases
Browse files Browse the repository at this point in the history
  • Loading branch information
repolevedavaj committed May 30, 2022
1 parent dd1d806 commit a6a45ef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish-ota-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
env:
EXPO_TOKEN: ${{ secrets.EXPO_TOKEN }}
SENTRY_TOKEN: ${{ secrets.SENTRY_TOKEN }}
PROJECT_PLANTS_VERSION: ${{ github.event.inputs.major_minor_version }}${{ github.event.inputs.patch_version }}
PROJECT_PLANTS_VERSION: ${{ github.event.inputs.major_minor_version }}.${{ github.event.inputs.patch_version }}
- uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v${{ github.event.inputs.major_minor_version }}${{ github.event.inputs.patch_version }}
release_name: OTA v${{ github.event.inputs.major_minor_version }}${{ github.event.inputs.patch_version }}
tag_name: v${{ github.event.inputs.major_minor_version }}.${{ github.event.inputs.patch_version }}
release_name: OTA v${{ github.event.inputs.major_minor_version }}.${{ github.event.inputs.patch_version }}

0 comments on commit a6a45ef

Please sign in to comment.