Skip to content

Update release action to not commit version #205

Update release action to not commit version

Update release action to not commit version #205

Workflow file for this run

name: Flutter CI CD
on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+*'
workflow_dispatch: # to manually run this workflow
inputs:
version:
description: 'Version number to release'
required: true
type: string
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
jobs:
test:
name: Test
uses: now-u/now-u-app/.github/workflows/flutter-test.yml@main
secrets: inherit
release-ios:
name: Release IOS
needs: test
uses: now-u/now-u-app/.github/workflows/ios-release.yml@main
secrets: inherit
with:
version: ${{ github.event.inputs.version != '' && github.event.inputs.version || github.ref_name }}
release-android:
name: Release Android
needs: test
uses: now-u/now-u-app/.github/workflows/android-release.yml@main
secrets: inherit
with:
version: ${{ github.event.inputs.version != '' && github.event.inputs.version || github.ref_name }}