Skip to content

Commit 7c02654

Browse files
Disable Artifact Upload
It seems like artifacts consume more shared runner space than initially thought. Until we find a better solution, we disable it
1 parent 21e05a9 commit 7c02654

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/build.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ on:
77
pull_request:
88
branches:
99
- "**"
10-
schedule:
11-
- cron: "0 0 * * *" # Run daily at midnight
10+
# schedule:
11+
# - cron: "0 0 * * *" # Run daily at midnight
1212
workflow_dispatch:
1313
inputs:
1414
WEB_TEST_URL:
@@ -24,8 +24,8 @@ on:
2424
ANDROID_VERSION:
2525
description: "The Android version to use for the build"
2626
required: false
27-
type: number
28-
default: 33
27+
type: string
28+
default: "33"
2929
BUILD_ALL_FLAVOURS:
3030
description: "When selected all flavours are built and archived as artifacts that can be installed alongside other versions of the same APKs"
3131
required: false
@@ -61,8 +61,8 @@ jobs:
6161
mv "$file" "$(dirname "$file")/${{ github.ref_name }}-${{ github.run_number }}-$(basename "$file")"
6262
done
6363
64-
- name: Archive APKs
65-
uses: actions/upload-artifact@v4
66-
with:
67-
name: apk-artifacts
68-
path: "**/*.apk"
64+
#- name: Archive APKs
65+
# uses: actions/upload-artifact@v4
66+
# with:
67+
# name: apk-artifacts
68+
# path: "**/*.apk"

0 commit comments

Comments
 (0)