Skip to content

Release - Create and Push Tag #14

Release - Create and Push Tag

Release - Create and Push Tag #14

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 }}