mirror of
https://github.com/element-hq/element-desktop.git
synced 2025-09-17 11:04:22 +02:00
Allow specifying the webapp artifact name for the reusable workflows (#2499)
This commit is contained in:
committed by
GitHub
parent
e13c6a4797
commit
4762bc137f
7
.github/workflows/build_linux.yaml
vendored
7
.github/workflows/build_linux.yaml
vendored
@@ -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
|
||||
|
||||
7
.github/workflows/build_macos.yaml
vendored
7
.github/workflows/build_macos.yaml
vendored
@@ -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
|
||||
|
||||
7
.github/workflows/build_windows.yaml
vendored
7
.github/workflows/build_windows.yaml
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user