Skip to content

Update release.yml

Update release.yml #15

Workflow file for this run

name: goreleaser
on:
pull_request:
push:
# run only against tags
tags:
- "*"
permissions:
contents: write
packages: write
issues: write
jobs:
goreleaser:
strategy:
matrix:
distro: [debian/bullseye, debian/bookworm, ubuntu/noble, ubuntu/jammy]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: stable
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
# 'latest', 'nightly', or a semver
version: "~> v2"
args: release --clean --verbose --config .goreleaser.yaml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: push package to packagecloud.io
uses: computology/packagecloud-github-action@v0.6
with:
package-name: dist/*.deb
packagecloud-username: jelloeater
packagecloud-reponame: stampy
packagecloud-distro: ${{ matrix.distro }}
packagecloud-token: ${{ secrets.PACKAGECLOUD_TOKEN }}