Release - Create and Push Tag #14
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release - Create and Push Tag | |
on: | |
workflow_dispatch: | |
inputs: | |
app-version: | |
description: 'App Version for Release' | |
required: true | |
default: 'PLACEHOLDER' | |
env: | |
ASANA_PAT: ${{ secrets.GH_ASANA_SECRET }} | |
GH_TOKEN: ${{ secrets.GT_DAXMOBILE }} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
create-tag: | |
name: Create and Push git tag for version | |
runs-on: macos-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
token: ${{ secrets.GT_DAXMOBILE }} | |
- name: Use fastlane lane to create and push tagged release | |
id: create_git_tag | |
run: | | |
git remote set-url origin https://${{ secrets.GT_DAXMOBILE }}@github.com/duckduckgo/Android.git/ | |
bundle exec fastlane android test_tag_and_push_release_version app_version:${{ github.event.inputs.app-version }} |