Skip to content

build: sync dev main #437

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 26 commits into from
Jun 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/prep-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Prep next development cycle post release

on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]'

jobs:
sync-branch:
name: Update development branch
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@master
with:
ref: main
- uses: connor-baer/action-sync-branch@main
with:
branch: develop
token: ${{ secrets.GITHUB_TOKEN }}
force: false
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ android {

defaultConfig {
applicationId = Android.namespace
versionCode = 379
versionCode = 392
versionName = "1.1.$versionCode"

minSdk = Android.minSdkVersion
Expand Down
Loading