Skip to content

Commit 273206c

Browse files
ci: fix the HTTP 404 status error (#167)
Signed-off-by: Harikrishnan Balagopal <[email protected]>
1 parent a96f93f commit 273206c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
tag_exists = true;
6868
core.info(`the tag ${tag} already exists on ${resp.data.object.type} ${resp.data.object.sha}`);
6969
} catch(err) {
70-
if(err.status !== 404){
70+
if(err.status !== 404 && err.status !== '404'){
7171
throw err;
7272
}
7373
}
@@ -121,7 +121,7 @@ jobs:
121121
go-version: ${{ steps.info.outputs.go_version }}
122122
- run: VERSION='${{ github.event.inputs.tag }}' make dist
123123
- name: upload release assets
124-
uses: konveyor/move2kube-upload-release-action@v3
124+
uses: konveyor/move2kube-upload-release-action@v3.0.1
125125
with:
126126
repo_token: ${{ secrets.GITHUB_TOKEN }}
127127
tag: ${{ github.event.inputs.tag }}

0 commit comments

Comments
 (0)