Allow specifying the webapp artifact name for the reusable workflows (#2499)

This commit is contained in:
Michael Telatynski
2025-08-20 09:07:51 +01:00
committed by GitHub
parent e13c6a4797
commit 4762bc137f
3 changed files with 18 additions and 3 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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