We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08b77cf commit bc3e9a8Copy full SHA for bc3e9a8
.github/workflows/debian-release.yml
@@ -19,14 +19,14 @@ jobs:
19
runs-on: ubuntu-latest
20
steps:
21
- name: debug version env variable name
22
- run: echo "${{ GITHUB_REF }}"
+ run: echo "${{ github.ref }}"
23
- name: Checkout scaphandre-debian repository
24
uses: actions/checkout@v4
25
with:
26
repository: barnumbirr/scaphandre-debian
27
- name: Build package with version tag and Debian 11 Bullseye
28
run : |
29
- ./build.sh -v ${{ GITHUB_REF }}
+ ./build.sh -v ${{ github.ref }}
30
- name: Build package with version tag and Debian 12 Bookworm
31
run: |
32
- ./build.sh -i debian:bookworm-slim -v ${{ GITHUB_REF }}
+ ./build.sh -i debian:bookworm-slim -v ${{ github.ref }}
0 commit comments