|
|
|
|
@ -12,15 +12,20 @@ jobs: |
|
|
|
|
steps: |
|
|
|
|
|
|
|
|
|
- name: Checkout |
|
|
|
|
uses: actions/checkout@v2 |
|
|
|
|
uses: actions/checkout@v3 |
|
|
|
|
with: |
|
|
|
|
fetch-depth: 0 |
|
|
|
|
|
|
|
|
|
- name: Checkout submodules |
|
|
|
|
run: git submodule update --init --recursive |
|
|
|
|
- name: Get Go version |
|
|
|
|
run: echo "GO_VERSION=$(grep 'go \d\.' go.mod | cut -d ' ' -f 2)" >> $GITHUB_ENV |
|
|
|
|
|
|
|
|
|
- name: Set up Go |
|
|
|
|
uses: actions/setup-go@v2 |
|
|
|
|
uses: actions/setup-go@v3 |
|
|
|
|
with: |
|
|
|
|
go-version: 1.16 |
|
|
|
|
go-version: ${{ env.GO_VERSION }} |
|
|
|
|
|
|
|
|
|
- name: Checkout submodules |
|
|
|
|
run: git submodule update --init --recursive |
|
|
|
|
|
|
|
|
|
- name: Run GoReleaser |
|
|
|
|
uses: goreleaser/goreleaser-action@v2 |
|
|
|
|
|