diff --git a/.circleci/config.yml b/.circleci/config.yml index b8f1980..f862369 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,14 +2,14 @@ version: 2 jobs: go-version-latest: docker: - - image: cimg/go:1.17-node + - image: cimg/go:1.18-node steps: - checkout - run: make - run: make alltest go-version-last: docker: - - image: cimg/go:1.16-node + - image: cimg/go:1.17-node steps: - checkout - run: make diff --git a/.github/workflows/build-and-push-image.yml b/.github/workflows/build-and-push-image.yml index ef43625..d929e58 100644 --- a/.github/workflows/build-and-push-image.yml +++ b/.github/workflows/build-and-push-image.yml @@ -17,7 +17,7 @@ jobs: - name: Set up Go 1.x uses: actions/setup-go@v2 with: - go-version: 1.17 + go-version: 1.18 - run: | # https://github.com/actions/setup-go/issues/107 diff --git a/.github/workflows/goreleaser.yml b/.github/workflows/goreleaser.yml index a58546a..40914a4 100644 --- a/.github/workflows/goreleaser.yml +++ b/.github/workflows/goreleaser.yml @@ -15,7 +15,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.17 + go-version: 1.18 - run: | # https://github.com/actions/setup-go/issues/107 diff --git a/.goreleaser.yml b/.goreleaser.yml index 6cf8c6a..e1aaff0 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -1,7 +1,10 @@ builds: - skip: true checksum: - name_template: 'checksums.txt' + name_template: '{{ .ProjectName }}_{{ .Version }}_sha256_checksums.txt' + algorithm: sha256 + extra_files: + - glob: ./release/packages/* release: # Same as for github # Note: it can only be one: either github, gitlab or gitea