File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -26,32 +26,32 @@ jobs:
26
26
echo "Invalid tag format: ${GITHUB_REF_NAME}"
27
27
exit 1
28
28
fi
29
- echo "APPWRAPPER_VERSION =${GITHUB_REF_NAME#v }" >> "$GITHUB_ENV"
29
+ echo "RELEASE_VERSION =${GITHUB_REF_NAME}" >> "$GITHUB_ENV"
30
30
31
31
- name : Set up Go
32
32
uses : actions/setup-go@v5
33
33
with :
34
34
go-version-file : ' ./go.mod'
35
35
36
36
- name : docker login
37
- uses : docker/login-action@v2
37
+ uses : docker/login-action@v3
38
38
with :
39
39
registry : quay.io
40
40
username : ${{ secrets.QUAY_USERNAME }}
41
41
password : ${{ secrets.QUAY_ROBOT_TOKEN }}
42
42
43
43
- name : Build and Push Images
44
44
run : |
45
- make docker-buildx -e TAG=${APPWRAPPER_VERSION } -e quay_repository=quay.io/ibm
45
+ make docker-buildx -e TAG=${RELEASE_VERSION } -e quay_repository=quay.io/ibm
46
46
47
47
- name : Create Install YAML
48
48
run : |
49
- make build-installer -e TAG=${APPWRAPPER_VERSION } -e quay_repository=quay.io/ibm
49
+ make build-installer -e TAG=${RELEASE_VERSION } -e quay_repository=quay.io/ibm
50
50
51
51
- name : Create GitHub Release
52
52
uses : softprops/action-gh-release@v1
53
53
with :
54
- name : Release ${{ env.APPWRAPPER_VERSION }}
54
+ name : Release ${{ env.RELEASE_VERSION }}
55
55
fail_on_unmatched_files : true
56
56
files : |
57
57
./dist/install.yaml
You can’t perform that action at this time.
0 commit comments