From 7b7748ad41ac11e09fb95ae2333d8c6a22a0989d Mon Sep 17 00:00:00 2001 From: Edward Carmack Date: Sat, 30 Mar 2024 16:34:24 -0400 Subject: [PATCH] Updated ci to build and push any branch starting with playtest/ --- .github/workflows/docker-publish.yml | 4 ++-- lib/screens/roster/roster.dart | 2 +- pubspec.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 8030a4bd..460ef2b2 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -3,7 +3,7 @@ name: Docker on: push: # Publish `main` as Docker `latest` image. - branches: [main] + branches: [main, playtest/*] # Publish `v1.2.3` tags as releases. tags: [v*] @@ -83,7 +83,7 @@ jobs: deploy: runs-on: ubuntu-latest needs: build - if: github.event_name == 'push' + if: github.event_name == 'push' && github.ref == 'refs/heads/main' steps: - name: "Checkout" diff --git a/lib/screens/roster/roster.dart b/lib/screens/roster/roster.dart index 1a5b0e70..f3b93d0e 100644 --- a/lib/screens/roster/roster.dart +++ b/lib/screens/roster/roster.dart @@ -21,7 +21,7 @@ import 'package:url_launcher/url_launcher_string.dart'; const double _leftPanelWidth = 670.0; const double _titleHeight = 40.0; const double _menuTitleHeight = 50.0; -const String _version = '1.4.3'; +const String _version = '1.4.4'; const String _bugEmailAddress = 'gearforce@metadiversions.com'; const String _dp9URL = 'https://www.dp9.com/'; const String _sourceCodeURL = 'https://github.com/Ariemeth/gearforce-flutter'; diff --git a/pubspec.yaml b/pubspec.yaml index 685b0b39..cae02b9e 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -16,7 +16,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -version: 1.4.3 +version: 1.4.4 environment: sdk: ">=3.0.0"