Skip to content

Commit

Permalink
Updated ci to build and push any branch starting with playtest/
Browse files Browse the repository at this point in the history
  • Loading branch information
Ariemeth committed Mar 30, 2024
1 parent 7b7a686 commit 7b7748a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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*]
Expand Down Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion lib/screens/roster/roster.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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 = '[email protected]';
const String _dp9URL = 'https://www.dp9.com/';
const String _sourceCodeURL = 'https://github.com/Ariemeth/gearforce-flutter';
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit 7b7748a

Please sign in to comment.