github action --> straight docker
Some checks failed
/ test (push) Successful in 1m23s
goreleaser / goreleaser (push) Failing after 4s

This commit is contained in:
Joseph Hanson 2024-08-01 11:32:28 -05:00
parent af853a5d64
commit c4c7c34b1e
Signed by: jahanson
SSH key fingerprint: SHA256:vy6dKBECV522aPAwklFM3ReKAVB086rT3oWwiuiFG7o

View file

@ -15,24 +15,9 @@ permissions:
jobs: jobs:
goreleaser: goreleaser:
runs-on: docker runs-on: docker
container:
image: ghcr.io/goreleaser/goreleaser:v2.1.0
steps: steps:
- name: Checkout - run: |
uses: actions/checkout@v4 echo ${{ github.workspace }}
with: goreleaser release
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: stable
# More assembly might be required: Docker logins, GPG, etc.
# It all depends on your needs.
- name: Run GoReleaser
uses: https://github.com/goreleaser/goreleaser-action@v6
with:
# either 'goreleaser' (default) or 'goreleaser-pro'
distribution: goreleaser
# 'latest', 'nightly', or a semver
version: "~> v1"
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}