Skip to content

Commit

Permalink
release v1.0-5
Browse files Browse the repository at this point in the history
  • Loading branch information
Grigoriym committed Apr 20, 2024
1 parent b377e87 commit 2ebc0a4
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: release-artifacts
paths: |
path: |
app/build/outputs/apl/release/
app/build/outputs/bundle/release/
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/release_pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Create PR for Release

on:
push:
branches:
- release/*

jobs:
create-pr:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Create PR
uses: Songmu/tagpr@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
base: master
head: ${{ github.ref }}
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ android {
applicationId = "com.grappim.hateitorrateit"
minSdk = libs.versions.minSdk.get().toInt()
targetSdk = libs.versions.targetSdk.get().toInt()
versionCode = 4
versionCode = 5
versionName = "1.0"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
Expand Down

0 comments on commit 2ebc0a4

Please sign in to comment.