File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 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
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
You can’t perform that action at this time.
0 commit comments