File tree Expand file tree Collapse file tree 1 file changed +4
-10
lines changed
staging/operator-lifecycle-manager/.github/workflows Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change 27
27
echo IMAGE_TAG="snapshot" >> $GITHUB_ENV
28
28
fi
29
29
30
- - name : Create a draft release
31
- uses : softprops/action-gh-release@v2
32
- id : release
33
- if : startsWith(github.ref, 'refs/tags')
34
- env :
35
- GITHUB_TOKEN : ${{ github.token }}
36
- with :
37
- name : ${{ env.IMAGE_TAG }}
38
- draft : true
39
-
40
30
- name : Set up QEMU
41
31
uses : docker/setup-qemu-action@v3
42
32
58
48
IMAGE_REPO : quay.io/operator-framework/olm
59
49
PKG : github.com/operator-framework/operator-lifecycle-manager
60
50
51
+ # The below steps depend on a image being present in a image registry
52
+ # as well as existence of a release on GitHub which are not
53
+ # being created by goreleaser when run against anything other than a tag.
54
+ # So we only run the steps below for tags.
61
55
- name : Generate quickstart release manifests
62
56
if : startsWith(github.ref, 'refs/tags')
63
57
run : make release RELEASE_VERSION=${{ env.IMAGE_TAG }} IMAGE_REPO=quay.io/operator-framework/olm
You can’t perform that action at this time.
0 commit comments