We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bc66f1c + 8048ced commit 78511daCopy full SHA for 78511da
2 files changed
.github/workflows/images.yaml
@@ -80,7 +80,7 @@ jobs:
80
- name: get version from tag
81
if: ${{ github.event_name != 'pull_request' && github.ref_type == 'tag' }}
82
run: |
83
- imageversion=echo $GITHUB_REF_NAME | sed 's/^image-//'
+ imageversion=$(echo $GITHUB_REF_NAME | sed 's/^image-//')
84
echo "IMAGE_VERSION=$imageversion" >> $GITHUB_ENV
85
- name: get version for PR
86
if: ${{ github.event_name == 'pull_request' }}
images/build.sh
@@ -1,7 +1,7 @@
1
#!/bin/bash
2
set -x
3
output=${OUTPUT:=local,dest=/tmp/}
4
-INSTALLER_VERSION="${INSTALLER_VERSION:=installer-v0.0.1}"
+INSTALLER_VERSION="${INSTALLER_VERSION:=latest}"
5
version="${VERSION:=latest}"
6
image="${IMAGE:=ghcr.io/jsturtevant/windows-debug:$version}"
7
0 commit comments