Skip to content

Commit bc3e9a8

Browse files
committed
refactor: modified call to github env vars
1 parent 08b77cf commit bc3e9a8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/debian-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: debug version env variable name
22-
run: echo "${{ GITHUB_REF }}"
22+
run: echo "${{ github.ref }}"
2323
- name: Checkout scaphandre-debian repository
2424
uses: actions/checkout@v4
2525
with:
2626
repository: barnumbirr/scaphandre-debian
2727
- name: Build package with version tag and Debian 11 Bullseye
2828
run : |
29-
./build.sh -v ${{ GITHUB_REF }}
29+
./build.sh -v ${{ github.ref }}
3030
- name: Build package with version tag and Debian 12 Bookworm
3131
run: |
32-
./build.sh -i debian:bookworm-slim -v ${{ GITHUB_REF }}
32+
./build.sh -i debian:bookworm-slim -v ${{ github.ref }}

0 commit comments

Comments
 (0)