|
@@ -423,7 +423,7 @@ jobs:
|
|
|
echo "feature_set=${FEATURES%+}" >> "$GITHUB_OUTPUT"
|
|
echo "feature_set=${FEATURES%+}" >> "$GITHUB_OUTPUT"
|
|
|
|
|
|
|
|
- name: Clone shared source repos once
|
|
- name: Clone shared source repos once
|
|
|
- if: inputs.use_nomount
|
|
|
|
|
|
|
+ if: inputs.use_nomount && !inputs.test_release_notes
|
|
|
shell: bash
|
|
shell: bash
|
|
|
run: |
|
|
run: |
|
|
|
set -euo pipefail
|
|
set -euo pipefail
|
|
@@ -438,7 +438,7 @@ jobs:
|
|
|
|
|
|
|
|
list-manager-apks:
|
|
list-manager-apks:
|
|
|
needs: resolve-sources
|
|
needs: resolve-sources
|
|
|
- if: needs.resolve-sources.outputs.manager_list != ''
|
|
|
|
|
|
|
+ if: "!inputs.test_release_notes && needs.resolve-sources.outputs.manager_list != ''"
|
|
|
runs-on: ubuntu-latest
|
|
runs-on: ubuntu-latest
|
|
|
outputs:
|
|
outputs:
|
|
|
apk_list: ${{ steps.scan.outputs.apk_list }}
|
|
apk_list: ${{ steps.scan.outputs.apk_list }}
|
|
@@ -551,7 +551,7 @@ jobs:
|
|
|
|
|
|
|
|
publish-manager-artifacts:
|
|
publish-manager-artifacts:
|
|
|
needs: list-manager-apks
|
|
needs: list-manager-apks
|
|
|
- if: needs.list-manager-apks.outputs.apk_list != ''
|
|
|
|
|
|
|
+ if: "!inputs.test_release_notes && needs.list-manager-apks.outputs.apk_list != ''"
|
|
|
runs-on: ubuntu-latest
|
|
runs-on: ubuntu-latest
|
|
|
strategy:
|
|
strategy:
|
|
|
fail-fast: false
|
|
fail-fast: false
|
|
@@ -576,6 +576,7 @@ jobs:
|
|
|
|
|
|
|
|
build-nomount-module:
|
|
build-nomount-module:
|
|
|
needs: resolve-sources
|
|
needs: resolve-sources
|
|
|
|
|
+ if: "!inputs.test_release_notes"
|
|
|
runs-on: ubuntu-latest
|
|
runs-on: ubuntu-latest
|
|
|
steps:
|
|
steps:
|
|
|
- uses: actions/checkout@v7
|
|
- uses: actions/checkout@v7
|