Skip to content

Commit

Permalink
fix: using env context
Browse files Browse the repository at this point in the history
  • Loading branch information
bdromard committed Jan 24, 2024
1 parent 0772db5 commit f446e61
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 @@ -80,10 +80,10 @@ jobs:
apt install -y curl
- name: Download Debian 11 scaphandre package
run: |
curl -o https://s3.fr-par.scw.cloud/scaphandre/x86_64/$DEB11_PKG
curl -o https://s3.fr-par.scw.cloud/scaphandre/x86_64/${{ env.DEB11_PKG }}
- name: Install and run scaphandre Stdout exporter for 10 seconds
run: |
apt install -y ./$DEB11_PKG
apt install -y ./${{ env.DEB11_PKG }}
scaphandre stdout -t 10
deb12-container-install-scaphandre:
name: Create Debian 12 container and install scaphandre with URL
Expand All @@ -100,8 +100,8 @@ jobs:
apt install -y curl
- name: Download Debian 12 scaphandre package
run: |
curl -o https://s3.fr-par.scw.cloud/scaphandre/x86_64/$DEB12_PKG
curl -o https://s3.fr-par.scw.cloud/scaphandre/x86_64/${{ env.DEB12_PKG }}
- name: Install and run scaphandre Stdout exporter for 10 seconds
run: |
apt install -y ./$DEB12_PKG
apt install -y ./${{ env.DEB12_PKG }}
scaphandre stdout -t 10

0 comments on commit f446e61

Please sign in to comment.