Skip to content

Commit d6d19b0

Browse files
authored
Use correct release name (#6)
1 parent 11ce23d commit d6d19b0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,15 +122,15 @@ jobs:
122122
GIT_SHA=$(git rev-parse --short HEAD)
123123
make build-installer \
124124
IMG=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.version.outputs.full }} \
125-
VERSION_LABEL=${{ steps.version.outputs.full }} \
125+
VERSION_LABEL=v${{ steps.version.outputs.full }} \
126126
GIT_SHA_LABEL=${GIT_SHA}
127127
mv dist/install.yaml func-operator.yaml
128128
129129
- name: Create GitHub Release
130130
env:
131131
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
132132
run: |
133-
gh release create ${{ github.ref_name }} \
134-
--title "Release ${{ github.ref_name }}" \
133+
gh release create "v${{ steps.version.outputs.full }}" \
135134
--generate-notes \
135+
--latest=${{ steps.version.outputs.is_latest }} \
136136
func-operator.yaml

0 commit comments

Comments
 (0)