diff --git a/.github/workflows/build_linux.yaml b/.github/workflows/build_linux.yaml index 37edc5f07a..d4cd54860d 100644 --- a/.github/workflows/build_linux.yaml +++ b/.github/workflows/build_linux.yaml @@ -20,6 +20,11 @@ on: type: boolean required: false description: "Whether to run the blob report" + prepare-artifact-name: + type: string + required: false + description: "The name of the prepare artifact to use, defaults to 'webapp'" + default: "webapp" env: SQLCIPHER_BUNDLED: ${{ inputs.sqlcipher == 'static' && '1' || '' }} MAX_GLIBC: 2.31 # bullseye-era glibc, used by glibc-check.sh @@ -64,7 +69,7 @@ jobs: - uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5 with: - name: webapp + name: ${{ inputs.prepare-artifact-name }} - name: Cache .hak id: cache diff --git a/.github/workflows/build_macos.yaml b/.github/workflows/build_macos.yaml index 5bdaa11125..056505aa5c 100644 --- a/.github/workflows/build_macos.yaml +++ b/.github/workflows/build_macos.yaml @@ -31,6 +31,11 @@ on: type: boolean required: false description: "Whether to run the blob report" + prepare-artifact-name: + type: string + required: false + description: "The name of the prepare artifact to use, defaults to 'webapp'" + default: "webapp" permissions: {} # No permissions required jobs: build: @@ -41,7 +46,7 @@ jobs: - uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5 with: - name: webapp + name: ${{ inputs.prepare-artifact-name }} - name: Cache .hak id: cache diff --git a/.github/workflows/build_windows.yaml b/.github/workflows/build_windows.yaml index ddc2bcb879..7e7251c721 100644 --- a/.github/workflows/build_windows.yaml +++ b/.github/workflows/build_windows.yaml @@ -34,6 +34,11 @@ on: type: boolean required: false description: "Whether to run the blob report" + prepare-artifact-name: + type: string + required: false + description: "The name of the prepare artifact to use, defaults to 'webapp'" + default: "webapp" permissions: {} # No permissions required jobs: build: @@ -69,7 +74,7 @@ jobs: - uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5 with: - name: webapp + name: ${{ inputs.prepare-artifact-name }} - name: Cache .hak id: cache