Skip to content

Commit

Permalink
Disable Artifact Upload
Browse files Browse the repository at this point in the history
It seems like artifacts consume more shared runner space than initially thought.

Until we find a better solution, we disable it
  • Loading branch information
sebastiangollob authored Sep 7, 2024
1 parent 21e05a9 commit 7c02654
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ on:
pull_request:
branches:
- "**"
schedule:
- cron: "0 0 * * *" # Run daily at midnight
# schedule:
# - cron: "0 0 * * *" # Run daily at midnight
workflow_dispatch:
inputs:
WEB_TEST_URL:
Expand All @@ -24,8 +24,8 @@ on:
ANDROID_VERSION:
description: "The Android version to use for the build"
required: false
type: number
default: 33
type: string
default: "33"
BUILD_ALL_FLAVOURS:
description: "When selected all flavours are built and archived as artifacts that can be installed alongside other versions of the same APKs"
required: false
Expand Down Expand Up @@ -61,8 +61,8 @@ jobs:
mv "$file" "$(dirname "$file")/${{ github.ref_name }}-${{ github.run_number }}-$(basename "$file")"
done
- name: Archive APKs
uses: actions/upload-artifact@v4
with:
name: apk-artifacts
path: "**/*.apk"
#- name: Archive APKs
# uses: actions/upload-artifact@v4
# with:
# name: apk-artifacts
# path: "**/*.apk"

0 comments on commit 7c02654

Please sign in to comment.