diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5cf40ea..e2ba986 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -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 diff --git a/.github/workflows/sh.yaml b/.github/workflows/sh.yaml index fdd34f5..6b86281 100644 --- a/.github/workflows/sh.yaml +++ b/.github/workflows/sh.yaml @@ -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