Skip to content

Commit

Permalink
fix condition
Browse files Browse the repository at this point in the history
  • Loading branch information
unglaublicherdude committed Jul 4, 2024
1 parent 57d9b86 commit 98091f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci-golang.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ jobs:
MAJOR_VERSION: ${{ needs.extract-major-version.outputs.major_version }}
if: startsWith(github.ref, 'refs/tags')
run: |
if [ "$MAJOR_VERSION" -eq "v1" ]; then
if [ "$MAJOR_VERSION" == "v1" ]; then
GOPROXY=proxy.golang.org go list -m github.com/GDATASoftwareAG/vaas/golang/vaas@${GITHUB_REF#refs/tags/golang/vaas/}
else
GOPROXY=proxy.golang.org go list -m github.com/GDATASoftwareAG/vaas/golang/vaas/${MAJOR_VERSION}@${GITHUB_REF#refs/tags/golang/vaas/}
Expand Down

0 comments on commit 98091f6

Please sign in to comment.