Skip to content

Commit

Permalink
refactor: modified call to github env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
bdromard committed Jan 22, 2024
1 parent 08b77cf commit bc3e9a8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/debian-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: debug version env variable name
run: echo "${{ GITHUB_REF }}"
run: echo "${{ github.ref }}"
- name: Checkout scaphandre-debian repository
uses: actions/checkout@v4
with:
repository: barnumbirr/scaphandre-debian
- name: Build package with version tag and Debian 11 Bullseye
run : |
./build.sh -v ${{ GITHUB_REF }}
./build.sh -v ${{ github.ref }}
- name: Build package with version tag and Debian 12 Bookworm
run: |
./build.sh -i debian:bookworm-slim -v ${{ GITHUB_REF }}
./build.sh -i debian:bookworm-slim -v ${{ github.ref }}

0 comments on commit bc3e9a8

Please sign in to comment.