From 017ea851cc473b5f77afe00d976f18442219b015 Mon Sep 17 00:00:00 2001 From: Frida Kiriakos Date: Tue, 21 Oct 2025 16:51:10 +0200 Subject: [PATCH] use env to pass input and output parameters --- .github/workflows/l10n.yml | 4 +++- .github/workflows/smoke.yml | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/l10n.yml b/.github/workflows/l10n.yml index 4bd458c1a..528002192 100644 --- a/.github/workflows/l10n.yml +++ b/.github/workflows/l10n.yml @@ -206,8 +206,10 @@ jobs: shell: pwsh - name: Download Executable if: ${{ inputs.win_installer_link }} + env: + WIN_INSTALLER_LINK: ${{ inputs.win_installer_link }} run: | - Invoke-WebRequest -Uri ${{ inputs.win_installer_link }} -OutFile "${{ github.workspace }}\setup.exe" + Invoke-WebRequest -Uri $WIN_INSTALLER_LINK -OutFile "${{ github.workspace }}\setup.exe" New-Item -ItemType Directory -Path "C:\Program Files\Custom Firefox" -Force shell: pwsh - name: Install Beta diff --git a/.github/workflows/smoke.yml b/.github/workflows/smoke.yml index 7a3d15bb3..432e53a71 100644 --- a/.github/workflows/smoke.yml +++ b/.github/workflows/smoke.yml @@ -91,8 +91,10 @@ jobs: shell: pwsh - name: Download Executable if: ${{ inputs.win_installer_link }} + env: + WIN_INSTALLER_LINK: ${{ inputs.win_installer_link }} run: | - Invoke-WebRequest -Uri ${{ inputs.win_installer_link }} -OutFile "${{ github.workspace }}\setup.exe" + Invoke-WebRequest -Uri $WIN_INSTALLER_LINK -OutFile "${{ github.workspace }}\setup.exe" New-Item -ItemType Directory -Path "C:\Program Files\Custom Firefox" -Force shell: pwsh - name: Install Beta