Skip to content

Commit 9d6697a

Browse files
committed
ci: simplify release workflow and remove unused dep steps
Refactored the release workflow to remove deprecated dep steps and streamline dependency installation. Changed the test step to build, invoking the build script directly.
1 parent 00ffb97 commit 9d6697a

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,9 @@ jobs:
2424

2525
- name: Get dependencies
2626
run: |
27-
go get -v -t -d ./...
28-
if [ -f Gopkg.toml ]; then
29-
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
30-
dep ensure
31-
fi
27+
go get -v -t ./...
3228
33-
- name: Test
29+
- name: Build
3430
run: |
3531
./build.sh build
3632

0 commit comments

Comments
 (0)