Remove GoReleaser configuration

The build throws an error message:
'403 Resource not accessible by integration []'

The documentation suggests using a PAT instead, but I would like to avoid this.
This commit is contained in:
eikendev 2022-03-13 21:03:29 +01:00
parent 2e087d98b1
commit 473a005f45
No known key found for this signature in database
GPG key ID: A1BDB1B28C8EF694
2 changed files with 0 additions and 60 deletions

View file

@ -1,41 +0,0 @@
name: GoReleaser
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
test_build_goreleaser:
name: Test, build, and GoReleaser
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Export GOBIN
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: Install Poetry
run: curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: make setup
- name: Run tests
run: |
source $(poetry env info --path)/bin/activate
make test
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
distribution: goreleaser
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View file

@ -1,19 +0,0 @@
builds:
- id: pushbits
main: ./cmd/pushbits
goos:
- linux
goarch:
- amd64
- 386
- arm
- arm64
checksum:
algorithm: sha256
archives:
- id: pushbits
builds:
- pushbits
format: tar.gz