Skip to content

Commit a001e8b

Browse files
committed
Merge branch 'master' of https://github.com/MMRLApp/MMRL
2 parents 1b4444d + b918014 commit a001e8b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/telegram-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
fetch-depth: 0
3838

3939
- name: Set up signing key
40-
if: github.ref == 'refs/heads/main'
40+
if: github.ref == 'refs/heads/master'
4141
run: |
4242
if [ ! -z "${{ secrets.KEY_STORE }}" ]; then
4343
echo keyStorePassword='${{ secrets.KEY_STORE_PASSWORD }}' >> signing.properties
@@ -63,7 +63,7 @@ jobs:
6363
run: chmod 755 ./gradlew && ./gradlew assemble${{ inputs.buildType }}
6464

6565
- name: Get release name
66-
if: success() && github.ref == 'refs/heads/main'
66+
if: success() && github.ref == 'refs/heads/master'
6767
id: release-name
6868
run: |
6969
name=`ls app/build/outputs/apk/${{ env.BUILD_TYPE_CASED }}/*.apk | awk -F '(/|.apk)' '{print $6}'` && echo "name=${name}" >> $GITHUB_OUTPUT
@@ -103,14 +103,14 @@ jobs:
103103
BOT_TOKEN: ${{ secrets.TELEGRAM_BOT_TOKEN }}
104104

105105
- name: Upload built apk
106-
if: success() && github.ref == 'refs/heads/main'
106+
if: success() && github.ref == 'refs/heads/master'
107107
uses: actions/upload-artifact@v4
108108
with:
109109
name: ${{ steps.release-name.outputs.name }}
110110
path: app/build/outputs/apk/${{ env.BUILD_TYPE_CASED }}/*.apk
111111

112112
- name: Upload mappings
113-
if: success() && github.ref == 'refs/heads/main'
113+
if: success() && github.ref == 'refs/heads/master'
114114
uses: actions/upload-artifact@v4
115115
with:
116116
name: mappings

0 commit comments

Comments
 (0)