File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change 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
30
30
31
- name : docker login
31
32
uses : docker/login-action@v2
36
37
37
38
- name : Build and Push Images
38
39
run : |
39
- make docker-buildx -e TAG=${GITHUB_REF_NAME} -e quay_repository=quay.io/ibm
40
+ make docker-buildx -e TAG=${APPWRAPPER_VERSION} -e quay_repository=quay.io/ibm
41
+
42
+ - name : Create Install YAML
43
+ run : |
44
+ make build-installer -e TAG=${APPWRAPPER_VERSION} -e quay_repository=quay.io/ibm
45
+
46
+ - name : Create GitHub Release
47
+ uses : softprops/action-gh-release@v1
48
+ with :
49
+ name : Release ${{ env.APPWRAPPER_VERSION }}
50
+ fail_on_unmatched_files : true
51
+ files : |
52
+ ./dist/install.yaml
You can’t perform that action at this time.
0 commit comments