Skip to content

Commit b50274d

Browse files
committed
workflows: CI: set retention to 7; cleanup: only cleans old virus scans
1 parent 7847cf4 commit b50274d

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,4 +107,4 @@ jobs:
107107
name: SmartTube_${{ steps.get_version.outputs.VERSION_NAME }}_x86
108108
path: ./smarttubetv/build/outputs/apk/stbeta/debug/*_x86.apk
109109
if-no-files-found: error
110-
retention-days: 1
110+
retention-days: 7

.github/workflows/cleanup.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
- uses: actions/github-script@v7
1515
with:
1616
script: |
17-
const KEEP = 10;
18-
const workflowNames = ["Build Debug APK", "VirusTotal Scan"];
17+
const KEEP = 0;
18+
const workflowNames = ["VirusTotal Scan"];
1919
2020
// Get workflow ID
2121
const workflows = await github.rest.actions.listRepoWorkflows({

smarttubetv/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ android {
5656
applicationId "org.smarttube"
5757
minSdkVersion project.properties.minSdkVersion
5858
targetSdkVersion project.properties.targetSdkVersion
59-
versionCode 2259
60-
versionName "30.69"
59+
versionCode 2260
60+
versionName "30.70"
6161
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
6262
buildConfigField "long", "TIMESTAMP", System.currentTimeMillis() + "L"
6363

0 commit comments

Comments
 (0)