Skip to content

Commit

Permalink
Merge branch 'release'
Browse files Browse the repository at this point in the history
  • Loading branch information
jacopocarlini committed Mar 19, 2021
2 parents 22651df + 79b4b3c commit 2c26c95
Show file tree
Hide file tree
Showing 136 changed files with 6,777 additions and 2,040 deletions.
15 changes: 10 additions & 5 deletions .github/issue-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,17 @@ silent: false
branchName: '${issue.number}-${issue.title}'
autoCloseIssue: true
branches:
- label: task
- label: feature
prefix: feature/
name: master
- label: bug
name: develop
- label: fix
prefix: fix/
name: develop
- label: bugfix
prefix: bugfix/
name: release
- label: hotfix
prefix: hotfix/
name: master
- label: '*'
prefix: issues/
name: master
name: develop
27 changes: 27 additions & 0 deletions .github/workflows/autotag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Create Tag

on:
push:
branches: [ master, release ]

jobs:
tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Bump version and push tag
id: tag_version
uses: mathieudutour/github-tag-action@v5.3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
release_branches: master
pre_release_branches: release
tag_prefix: ""
- name: Create a GitHub release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.tag_version.outputs.new_tag }}
release_name: v${{ steps.tag_version.outputs.new_tag }}
body: ${{ steps.tag_version.outputs.changelog }}
29 changes: 29 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Fastlane Action

on:
push:
branches: [ master, release ]
pull_request:
branches: [ master, release ]

env:
flutter_version: "2.0.1"
java_version: "12.x"
ruby-version: "2.7.2"

jobs:
deploy:
runs-on: ubuntu-latest
timeout-minutes: 10

steps:
- uses: actions/checkout@v2
- uses: actions/setup-ruby@v1
with:
ruby-version: ${{ env.ruby-version }}
- uses: maierj/fastlane-action@v2.0.1
with:
lane: 'deploy'
subdirectory: 'android'


10 changes: 5 additions & 5 deletions .github/workflows/dart.yml → .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: Flutter basics
name: Test commit

on:
push:
branches: [ master ]
branches: [ master, release, develop ]
pull_request:
branches: [ master ]
branches: [ master, release, develop ]

env:
flutter_version: "1.17.1"
flutter_version: "2.0.1"
java_version: "12.x"

jobs:
Expand Down Expand Up @@ -39,6 +39,6 @@ jobs:
with:
flutter-version: ${{ env.flutter_version }}
- run: flutter pub get
- run: flutter build appbundle --target-platform android-arm,android-arm64,android-x64 -t lib/environments/integration.dart
- run: flutter build appbundle --target-platform android-arm,android-arm64,android-x64 -t lib/environments/integration.dart --debug


4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,14 @@
.history
.svn/

assets/secret/

# IntelliJ related
*.iml
*.ipr
*.iws
.idea/
android/secret/

# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
Expand All @@ -36,3 +39,4 @@ lib/generated_plugin_registrant.dart

# Exceptions to above rules.
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
/android/key.properties
Loading

0 comments on commit 2c26c95

Please sign in to comment.