chore(ci): automatically tag on deployment [skip ci]

This commit is contained in:
Jagandeep Brar
2022-02-19 11:11:42 -05:00
parent 88353beb69
commit 37e9a6bbfe
3 changed files with 21 additions and 0 deletions

View File

@@ -129,6 +129,13 @@ jobs:
bundle install
bundle exec fastlane deploy track:${{ inputs.flavor }} aab:${{ github.workspace }}/app-release.aab version_name:${{ github.sha }}
- name: Tag Deployment
uses: richardsimko/update-tag@v1
with:
tag_name: '${{ inputs.flavor }}-android'
env:
GITHUB_TOKEN: ${{ github.token }}
- name: Send Discord Message
uses: sarisia/actions-status-discord@v1
if: always()

View File

@@ -162,6 +162,13 @@ jobs:
bundle install
bundle exec fastlane deploy groups:${{ inputs.flavor }} ipa:${{ github.workspace }}/Runner.ipa
- name: Tag Deployment
uses: richardsimko/update-tag@v1
with:
tag_name: '${{ inputs.flavor }}-ios'
env:
GITHUB_TOKEN: ${{ github.token }}
- name: Send Discord Message
uses: sarisia/actions-status-discord@v1
if: always()

View File

@@ -162,6 +162,13 @@ jobs:
run: |
bundle install
bundle exec fastlane deploy groups:${{ inputs.flavor }} pkg:${{ github.workspace }}/LunaSea.pkg
- name: Tag Deployment
uses: richardsimko/update-tag@v1
with:
tag_name: '${{ inputs.flavor }}-macos'
env:
GITHUB_TOKEN: ${{ github.token }}
- name: Send Discord Message
uses: sarisia/actions-status-discord@v1