From b122626e977a5297b85111c4b70978c15b444ec3 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Wed, 28 Jun 2023 01:49:19 -0400 Subject: [PATCH] ci: fix swag command path --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b05e5d3..2c4baf2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,8 +27,8 @@ jobs: - name: Setup Swagger run: | go install github.com/swaggo/swag/cmd/swag@latest; - swag init -g main.go; - swag fmt; + $HOME/go/bin/swag init -g main.go; + $HOME/go/bin/swag fmt; - name: Build run: go build .