diff options
| author | Albin <albin@mullvad.net> | 2025-07-18 13:08:43 +0200 |
|---|---|---|
| committer | Albin <albin@mullvad.net> | 2025-07-18 13:17:26 +0200 |
| commit | 97d4a98d32d60a79cb139bd7b293611a145ccb9e (patch) | |
| tree | 185097412a37171b8fe1a62f49e7914572f3494a | |
| parent | 9f33989a8233cbdcffde55905b5cabf2cb00620c (diff) | |
| download | mullvadvpn-97d4a98d32d60a79cb139bd7b293611a145ccb9e.tar.xz mullvadvpn-97d4a98d32d60a79cb139bd7b293611a145ccb9e.zip | |
Trigger reproducible workflow on file changes
The intention with this change is primarily to
improve our PR workflow so that some specific
files trigger the reproducible workflow.
It's not possible to trigger workflows on either
PR `branches` OR `paths`, so as a workaround for
this limitation we now also trigger on release
note changes.
| -rw-r--r-- | .github/workflows/android-reproducible-builds.yml | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/.github/workflows/android-reproducible-builds.yml b/.github/workflows/android-reproducible-builds.yml index db468fdec5..13859f257e 100644 --- a/.github/workflows/android-reproducible-builds.yml +++ b/.github/workflows/android-reproducible-builds.yml @@ -14,11 +14,14 @@ on: type: string required: false pull_request: - branches: - - 'prepare-android/**' + paths: + - '.github/workflows/android-reproducible-builds.yml' + - 'building/android-container-image.txt' + - 'dist-assets/android-version*' + - 'android/src/main/play/release-notes/en-US/default.txt' + - 'android/gradle/**' + - 'android/flake*' push: - branches: - - 'prepare-android/**' tags: - 'android/**' |
