Skip to content

Added proper matrix #16

Added proper matrix

Added proper matrix #16

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:
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: Upload .deb artifact
uses: actions/upload-artifact@v3
with:
name: deb-package
path: dist/*.deb
packagecloud:
runs-on: ubuntu-latest
needs:
- goreleaser
strategy:
matrix:
distro: [debian/bullseye, debian/bookworm, ubuntu/noble, ubuntu/jammy]
steps:
- name: Download .deb artifact
uses: actions/download-artifact@v3
with:
name: deb-package
- name: Push package to packagecloud.io
uses: computology/[email protected]
with:
package-name: ./*.deb
packagecloud-username: jelloeater
packagecloud-reponame: stampy
packagecloud-distro: ${{ matrix.distro }}
packagecloud-token: ${{ secrets.PACKAGECLOUD_TOKEN }}