Skip to content

Commit a613f2a

Browse files
committed
ci workflow: debug -> release (users request)
1 parent 1b44e0a commit a613f2a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/CI.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- name: Build with Gradle
5353
run: |
5454
chmod +x gradlew
55-
./gradlew clean assembleStbetaDebug
55+
./gradlew clean assembleStbetaRelease
5656
5757
- name: VirusTotal Scan
5858
if: ${{ env.HAS_VT_KEY == 'true' }}
@@ -61,7 +61,7 @@ jobs:
6161
with:
6262
vt_api_key: ${{ secrets.VIRUS_TOTAL_API_KEY }}
6363
files: |
64-
./smarttubetv/build/outputs/apk/stbeta/debug/*.apk
64+
./smarttubetv/build/outputs/apk/stbeta/release/*.apk
6565
request_rate: 3
6666

6767
- name: VirusTotal Summary
@@ -74,7 +74,7 @@ jobs:
7474
echo "| Artifact Name | VirusTotal Status | Detailed Report |" >> $GITHUB_STEP_SUMMARY
7575
echo "| :--- | :--- | :--- |" >> $GITHUB_STEP_SUMMARY
7676
77-
for apk in ./smarttubetv/build/outputs/apk/stbeta/debug/*.apk; do
77+
for apk in ./smarttubetv/build/outputs/apk/stbeta/release/*.apk; do
7878
filename=$(basename "$apk")
7979
sha256=$(sha256sum "$apk" | awk '{print $1}')
8080
@@ -89,19 +89,19 @@ jobs:
8989
uses: actions/upload-artifact@v6
9090
with:
9191
name: SmartTube_${{ steps.get_version.outputs.VERSION_NAME }}_arm64
92-
path: ./smarttubetv/build/outputs/apk/stbeta/debug/*_arm64-v8a.apk
92+
path: ./smarttubetv/build/outputs/apk/stbeta/release/*_arm64-v8a.apk
9393
if-no-files-found: error
9494

9595
- name: Upload ARMv7 APK
9696
uses: actions/upload-artifact@v6
9797
with:
9898
name: SmartTube_${{ steps.get_version.outputs.VERSION_NAME }}_armeabi-v7a
99-
path: ./smarttubetv/build/outputs/apk/stbeta/debug/*_armeabi-v7a.apk
99+
path: ./smarttubetv/build/outputs/apk/stbeta/release/*_armeabi-v7a.apk
100100
if-no-files-found: error
101101

102102
- name: Upload x86 APK
103103
uses: actions/upload-artifact@v6
104104
with:
105105
name: SmartTube_${{ steps.get_version.outputs.VERSION_NAME }}_x86
106-
path: ./smarttubetv/build/outputs/apk/stbeta/debug/*_x86.apk
106+
path: ./smarttubetv/build/outputs/apk/stbeta/release/*_x86.apk
107107
if-no-files-found: error

0 commit comments

Comments
 (0)