From fe3fc9e2b914a835c49972366fe294614c995e93 Mon Sep 17 00:00:00 2001 From: lmittmann Date: Thu, 28 Dec 2023 12:49:41 +0100 Subject: [PATCH] dropped goreleaser --- .github/.goreleaser.yml | 20 -------------------- .github/workflows/release.yml | 23 ----------------------- 2 files changed, 43 deletions(-) delete mode 100644 .github/.goreleaser.yml delete mode 100644 .github/workflows/release.yml diff --git a/.github/.goreleaser.yml b/.github/.goreleaser.yml deleted file mode 100644 index dd75c35..0000000 --- a/.github/.goreleaser.yml +++ /dev/null @@ -1,20 +0,0 @@ -release: - github: - owner: lmittmann - name: go-solc - draft: true - footer: | - **Full Changelog**: [`{{ .PreviousTag }}…{{ .Tag }}`](https://github.com/{{ .Env.GITHUB_REPOSITORY }}/compare/{{ .PreviousTag }}...{{ .Tag }}) - -changelog: - sort: asc - groups: - - title: Bug Fixes - regexp: fix - order: 1 - - title: '' - regexp: .* - order: 0 - -builds: -- skip: true diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index 2fce3b6..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Release - -on: - push: - tags: - - v* - -permissions: - contents: write - -jobs: - goreleaser: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - uses: goreleaser/goreleaser-action@v4 - with: - version: latest - args: release --clean --config .github/.goreleaser.yml - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}