Skip to content

Commit 53e3e08

Browse files
authored
Remove tag check (#1955)
This was added during the changie changes, but of course it doesn't make sense yet because we push the tags manually and trigger this job on tag push. Therefore the tag will _always_ exist.
1 parent 212bee1 commit 53e3e08

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

.github/workflows/release-java-provider.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -46,18 +46,7 @@ jobs:
4646
${{ steps.go-cache-paths.outputs.go-build }}
4747
${{ steps.go-cache-paths.outputs.go-mod }}
4848
key: go-cache-${{ hashFiles('**/go.sum') }}
49-
- name: Check if release exists
50-
# This lets us update CHANGELOG.md and with updated release notes without retriggering a release
51-
# that's already happened.
52-
id: check-release
53-
run: |
54-
if [ -z "$(git tag -l ${{ env.GORELEASER_CURRENT_TAG }})" ]; then
55-
echo "exists=false" >> "$GITHUB_OUTPUT"
56-
else
57-
echo "exists=true" >> "$GITHUB_OUTPUT"
58-
fi
5949
- name: Run GoReleaser
60-
if: steps.check-release.outputs.exists == 'false'
6150
uses: goreleaser/goreleaser-action@v6
6251
with:
6352
version: latest

0 commit comments

Comments
 (0)