We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11ce23d commit d6d19b0Copy full SHA for d6d19b0
1 file changed
.github/workflows/release.yml
@@ -122,15 +122,15 @@ jobs:
122
GIT_SHA=$(git rev-parse --short HEAD)
123
make build-installer \
124
IMG=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.version.outputs.full }} \
125
- VERSION_LABEL=${{ steps.version.outputs.full }} \
+ VERSION_LABEL=v${{ steps.version.outputs.full }} \
126
GIT_SHA_LABEL=${GIT_SHA}
127
mv dist/install.yaml func-operator.yaml
128
129
- name: Create GitHub Release
130
env:
131
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
132
run: |
133
- gh release create ${{ github.ref_name }} \
134
- --title "Release ${{ github.ref_name }}" \
+ gh release create "v${{ steps.version.outputs.full }}" \
135
--generate-notes \
+ --latest=${{ steps.version.outputs.is_latest }} \
136
func-operator.yaml
0 commit comments