18 lines
372 B
YAML
18 lines
372 B
YAML
name: Flutter Tag Build
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
tags:
|
|
- 'v[0-9]+.[0-9]+.[0-9]+'
|
|
- '[0-9]+.[0-9]+.[0-9]+'
|
|
- 'v[0-9]+.[0-9]+.[0-9]+-[0-9]+'
|
|
- '[0-9]+.[0-9]+.[0-9]+-[0-9]+'
|
|
|
|
jobs:
|
|
run-flutter-tag-build:
|
|
uses: ./.github/workflows/flutter-build.yml
|
|
secrets: inherit
|
|
with:
|
|
upload-artifact: true
|
|
upload-tag: "1.2.5" |