Skip to content

Commit 8290661

Browse files
Merge remote-tracking branch 'origin/master'
2 parents d42d0b2 + 73f1060 commit 8290661

File tree

2 files changed

+35
-19
lines changed

2 files changed

+35
-19
lines changed

.github/workflows/greetings.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Greetings
2+
3+
on: [pull_request_target, issues]
4+
5+
jobs:
6+
greeting:
7+
runs-on: ubuntu-latest
8+
permissions:
9+
issues: write
10+
pull-requests: write
11+
steps:
12+
- uses: actions/first-interaction@v1
13+
with:
14+
repo-token: ${{ secrets.GITHUB_TOKEN }}
15+
issue-message: "Hey, looks like this is your first Issue in this repository! If you have any questions, please visit us: https://discord.com/invite/yspVzD4Kbm"
16+
pr-message: "Thank you for your efforts! Your Pull Request will be reviewed soon, but in the meantime you can sit with us: https://discord.com/invite/yspVzD4Kbm"

.github/workflows/manual_build.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -42,31 +42,31 @@ jobs:
4242
run: chmod +x gradlew
4343

4444
- name: Build Modern Alpha APK
45-
if: ${{ inputs.modern && inputs.type == "alpha" }}
45+
if: ${{ inputs.modern && inputs.type == 'alpha' }}
4646
run: ./gradlew assembleAlphaModernRelease
4747

4848
- name: Build Modern Beta APK
49-
if: ${{ inputs.modern && inputs.type == "beta" }}
49+
if: ${{ inputs.modern && inputs.type == 'beta' }}
5050
run: ./gradlew assembleBetaModernRelease
5151

5252
- name: Build Modern Production APK
53-
if: ${{ inputs.modern && inputs.type == "prod" }}
53+
if: ${{ inputs.modern && inputs.type == 'prod' }}
5454
run: ./gradlew assembleProdModernRelease
5555

5656
- name: Build Legacy Beta APK
57-
if: ${{ inputs.legacy && inputs.type == "beta" }}
57+
if: ${{ inputs.legacy && inputs.type == 'beta' }}
5858
run: ./gradlew assembleBetaLegacyRelease
5959

6060
- name: Build Legacy Alpha APK
61-
if: ${{ inputs.legacy && inputs.type == "alpha" }}
61+
if: ${{ inputs.legacy && inputs.type == 'alpha' }}
6262
run: ./gradlew assembleAlphaLegacyRelease
6363

6464
- name: Build Legacy Production APK
65-
if: ${{ inputs.legacy && inputs.type == "prod" }}
65+
if: ${{ inputs.legacy && inputs.type == 'prod' }}
6666
run: ./gradlew assembleProdLegacyRelease
6767

6868
- name: Sign Modern Alpha APK
69-
if: ${{ inputs.modern && inputs.type == "alpha" }}
69+
if: ${{ inputs.modern && inputs.type == 'alpha' }}
7070
uses: r0adkll/sign-android-release@v1
7171
id: sign_alpha
7272
with:
@@ -79,7 +79,7 @@ jobs:
7979
BUILD_TOOLS_VERSION: "34.0.0"
8080

8181
- name: Sign Modern Beta APK
82-
if: ${{ inputs.modern &&inputs.type == "beta" }}
82+
if: ${{ inputs.modern &&inputs.type == 'beta' }}
8383
uses: r0adkll/sign-android-release@v1
8484
id: sign_beta
8585
with:
@@ -92,7 +92,7 @@ jobs:
9292
BUILD_TOOLS_VERSION: "34.0.0"
9393

9494
- name: Sign Modern Production APK
95-
if: ${{ inputs.modern && inputs.type == "prod" }}
95+
if: ${{ inputs.modern && inputs.type == 'prod' }}
9696
uses: r0adkll/sign-android-release@v1
9797
id: sign_prod
9898
with:
@@ -105,7 +105,7 @@ jobs:
105105
BUILD_TOOLS_VERSION: "34.0.0"
106106

107107
- name: Sign Legacy Beta APK
108-
if: ${{ inputs.legacy && inputs.type == "beta" }}
108+
if: ${{ inputs.legacy && inputs.type == 'beta' }}
109109
uses: r0adkll/sign-android-release@v1
110110
id: sign_beta_legacy
111111
with:
@@ -118,7 +118,7 @@ jobs:
118118
BUILD_TOOLS_VERSION: "34.0.0"
119119

120120
- name: Sign Legacy Alpha APK
121-
if: ${{ inputs.legacy && inputs.type == "alpha" }}
121+
if: ${{ inputs.legacy && inputs.type == 'alpha' }}
122122
uses: r0adkll/sign-android-release@v1
123123
id: sign_alpha_legacy
124124
with:
@@ -131,7 +131,7 @@ jobs:
131131
BUILD_TOOLS_VERSION: "34.0.0"
132132

133133
- name: Sign Legacy Production APK
134-
if: ${{ inputs.legacy && inputs.type == "prod" }}
134+
if: ${{ inputs.legacy && inputs.type == 'prod' }}
135135
uses: r0adkll/sign-android-release@v1
136136
id: sign_prod_legacy
137137
with:
@@ -144,49 +144,49 @@ jobs:
144144
BUILD_TOOLS_VERSION: "34.0.0"
145145

146146
- name: Upload Modern Beta APK
147-
if: ${{ inputs.modern && inputs.type == "beta" }}
147+
if: ${{ inputs.modern && inputs.type == 'beta' }}
148148
uses: actions/upload-artifact@v4
149149
with:
150150
name: "Beta APK"
151151
retention-days: 90
152152
path: "app/build/outputs/apk/betaModern/release/app-beta-modern-release-signed.apk"
153153

154154
- name: Upload Modern Alpha APK
155-
if: ${{ inputs.modern && inputs.type == "alpha" }}
155+
if: ${{ inputs.modern && inputs.type == 'alpha' }}
156156
uses: actions/upload-artifact@v4
157157
with:
158158
name: "Alpha APK"
159159
retention-days: 90
160160
path: "app/build/outputs/apk/alphaModern/release/app-alpha-modern-release-signed.apk"
161161

162162
- name: Upload Modern Production APK
163-
if: ${{ inputs.modern && inputs.type == "prod" }}
163+
if: ${{ inputs.modern && inputs.type == 'prod' }}
164164
uses: actions/upload-artifact@v4
165165
with:
166166
name: "Production APK"
167167
retention-days: 90
168168
path: "app/build/outputs/apk/prodModern/release/app-prod-modern-release-signed.apk"
169169

170170
- name: Upload Legacy Beta APK
171-
if: ${{ inputs.legacy && inputs.type == "beta" }}
171+
if: ${{ inputs.legacy && inputs.type == 'beta' }}
172172
uses: actions/upload-artifact@v4
173173
with:
174174
name: "Legacy Beta APK"
175175
retention-days: 90
176176
path: "app/build/outputs/apk/betaLegacy/release/app-beta-legacy-release-signed.apk"
177177

178178
- name: Upload Legacy Alpha APK
179-
if: ${{ inputs.legacy && inputs.type == "alpha" }}
179+
if: ${{ inputs.legacy && inputs.type == 'alpha' }}
180180
uses: actions/upload-artifact@v4
181181
with:
182182
name: "Legacy Alpha APK"
183183
retention-days: 90
184184
path: "app/build/outputs/apk/alphaLegacy/release/app-alpha-legacy-release-signed.apk"
185185

186186
- name: Upload Legacy Production APK
187-
if: ${{ inputs.legacy && inputs.type == "prod" }}
187+
if: ${{ inputs.legacy && inputs.type == 'prod' }}
188188
uses: actions/upload-artifact@v4
189189
with:
190190
name: "Legacy Production APK"
191191
retention-days: 90
192-
path: "app/build/outputs/apk/prodLegacy/release/app-prod-legacy-release-signed.apk"
192+
path: "app/build/outputs/apk/prodLegacy/release/app-prod-legacy-release-signed.apk"

0 commit comments

Comments
 (0)