diff --git a/.github/workflows/goreleaser.yml b/.github/workflows/goreleaser.yml deleted file mode 100644 index 88eeb05..0000000 --- a/.github/workflows/goreleaser.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: goreleaser - -on: - push: - tags: - - "*" - -permissions: - contents: write - -jobs: - goreleaser: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - uses: actions/setup-go@v5 - with: - go-version: "stable" - - uses: goreleaser/goreleaser-action@v6 - with: - distribution: goreleaser - version: latest - args: release --rm-dist - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.goreleaser.yml b/.goreleaser.yml deleted file mode 100644 index 58cdf87..0000000 --- a/.goreleaser.yml +++ /dev/null @@ -1,21 +0,0 @@ -before: - hooks: - - go mod tidy -builds: - - main: ./cmd/changeloguru - goos: - - linux - - windows - - darwin - goarch: - - amd64 - - arm64 -universal_binaries: - - replace: true -archives: - - format_overrides: - - goos: windows - format: zip -changelog: - skip: false - use: github