Skip to content

Commit

Permalink
download submodules in sh test
Browse files Browse the repository at this point in the history
  • Loading branch information
curusarn committed Nov 25, 2021
1 parent bb17059 commit c0a897d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,23 @@ on:
- v*

jobs:

goreleaser:
runs-on: ubuntu-latest
steps:
-
name: Checkout

- name: Checkout
uses: actions/checkout@v2
-
name: Checkout submodules

- name: Checkout submodules
run: git submodule update --init --recursive
-
name: Set up Go

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
-
name: Run GoReleaser

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
version: latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/sh.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,8 @@ jobs:
- name: Check out code into the Go module directory
uses: actions/checkout@v2

- name: Checkout submodules
run: git submodule update --init --recursive

- name: Test
run: scripts/test.sh

0 comments on commit c0a897d

Please sign in to comment.