Skip to content

Commit

Permalink
fix: moved env to job level
Browse files Browse the repository at this point in the history
  • Loading branch information
bdromard committed Jan 24, 2024
1 parent 9800f03 commit 0772db5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/debian-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 0772db5

Please sign in to comment.