From 865eac39b7ef6a813a7e213cf23f9a15fb7cc6de Mon Sep 17 00:00:00 2001 From: Tpay Auto Commit Date: Fri, 13 Oct 2023 11:51:31 +0200 Subject: [PATCH] Release config --- .github/workflows/build_and_publish.yml | 2 +- .github/workflows/create_release.yml | 8 ++++---- sdk/build.gradle | 10 +++++----- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build_and_publish.yml b/.github/workflows/build_and_publish.yml index 4244b0d..2f2103f 100644 --- a/.github/workflows/build_and_publish.yml +++ b/.github/workflows/build_and_publish.yml @@ -3,7 +3,7 @@ name: Build and publish on: pull_request: branches: - - main + - master types: - closed diff --git a/.github/workflows/create_release.yml b/.github/workflows/create_release.yml index 9d7b16d..30e9e21 100644 --- a/.github/workflows/create_release.yml +++ b/.github/workflows/create_release.yml @@ -41,8 +41,8 @@ jobs: - name: Configure Git run: | - git config user.name "Tpay CI" - git config user.email ci-noreply@tpay.com + git config user.name "Tpay Auto Commit" + git config user.email devs@tpay.com - name: Create release branch run: git checkout -b release/${{ github.event.inputs.version }} @@ -61,5 +61,5 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: head: release/${{ github.event.inputs.version }} - base: main - title: ${{ github.event.inputs.version }} into main + base: master + title: ${{ github.event.inputs.version }} into master diff --git a/sdk/build.gradle b/sdk/build.gradle index 255ab73..db8b45d 100644 --- a/sdk/build.gradle +++ b/sdk/build.gradle @@ -156,15 +156,15 @@ afterEvaluate { } scm { - url '' - connection 'scm:git:git://github.com/.git' - developerConnection 'scm:git:git://github.com/.git' + url 'https://github.com/tpay-com/tpay-android' + connection 'scm:git:git://github.com/tpay-com/tpay-android.git' + developerConnection 'scm:git:git://github.com/tpay-com/tpay-android.git' } developers { developer { - id 'karolwojciechowski' - name 'Karol Wojciechowski' + id 'com.tpay.devs' + name 'Tpay Auto Commit' } } }