From 0772db503884c4cc3d7db6617e0f8e700d3bfab5 Mon Sep 17 00:00:00 2001 From: repair Date: Wed, 24 Jan 2024 16:30:19 +0100 Subject: [PATCH] fix: moved env to job level --- .github/workflows/debian-release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/debian-release.yml b/.github/workflows/debian-release.yml index 91a8bd8a..7e988570 100644 --- a/.github/workflows/debian-release.yml +++ b/.github/workflows/debian-release.yml @@ -68,12 +68,12 @@ jobs: deb11-container-install-scaphandre: name: Create Debian 11 container and install scaphandre with URL needs: create_debian_pkg_with_tag + env: + DEB11_PKG: ${{needs.create_debian_pkg_with_tags.outputs.deb11-pkg}} runs-on: ubuntu-latest container: image: debian:buster-slim steps: - - env: - DEB11_PKG: ${{needs.create_debian_pkg_with_tags.outputs.deb11-pkg}} - name: Install dependencies run: | apt update @@ -89,11 +89,11 @@ jobs: name: Create Debian 12 container and install scaphandre with URL needs: create_debian_pkg_with_tag runs-on: ubuntu-latest + env: + DEB12_PKG: ${{needs.create_debian_pkg_with_tags.outputs.deb12-pkg}} container: image: debian:bookworm-slim steps: - - env: - DEB12_PKG: ${{needs.create_debian_pkg_with_tags.outputs.deb12-pkg}} - name: Install dependencies run: | apt update