2022-09-19 02:31:33 +02:00
|
|
|
name: release
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'main'
|
|
|
|
tags:
|
|
|
|
- 'v*'
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
id-token: write
|
|
|
|
packages: write
|
|
|
|
|
|
|
|
jobs:
|
2022-12-29 19:55:45 +02:00
|
|
|
trigger-generate:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: [ goreleaser ]
|
|
|
|
steps:
|
2022-12-30 14:13:12 +02:00
|
|
|
- uses: benc-uk/workflow-dispatch@v121
|
2023-01-11 14:40:12 +02:00
|
|
|
if: startsWith(github.ref, 'refs/tags/v')
|
2022-12-29 19:55:45 +02:00
|
|
|
with:
|
|
|
|
repo: goreleaser/goreleaser
|
|
|
|
ref: main
|
|
|
|
token: ${{ secrets.GH_PAT }}
|
2022-12-29 20:02:27 +02:00
|
|
|
workflow: generate-releases.yml
|
2023-01-09 19:45:29 +02:00
|
|
|
notify-goreleaser-cross:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: [ trigger-generate ]
|
|
|
|
steps:
|
|
|
|
- name: get version
|
|
|
|
if: startsWith(github.ref, 'refs/tags/v')
|
|
|
|
run: echo "RELEASE_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
|
|
|
|
- name: notify goreleaser-cross with new release
|
|
|
|
if: startsWith(github.ref, 'refs/tags/v')
|
|
|
|
uses: benc-uk/workflow-dispatch@v121
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.GH_PAT }}
|
|
|
|
repo: goreleaser/goreleaser-cross
|
|
|
|
workflow: goreleaser-bump
|
|
|
|
inputs: '{ "tag" : "${{ env.RELEASE_TAG }}" }'
|
2022-09-19 02:31:33 +02:00
|
|
|
goreleaser-check-pkgs:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
|
|
DOCKER_CLI_EXPERIMENTAL: "enabled"
|
2022-12-29 19:55:45 +02:00
|
|
|
needs: [ goreleaser ]
|
2022-09-19 02:31:33 +02:00
|
|
|
if: github.ref == 'refs/heads/main'
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
format: [ deb, rpm, apk ]
|
|
|
|
steps:
|
2023-05-02 14:24:53 +02:00
|
|
|
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
|
2022-09-19 02:31:33 +02:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2023-02-01 14:19:19 +02:00
|
|
|
- uses: arduino/setup-task@e26d8975574116b0097a1161e0fe16ba75d84c1c # v1
|
2022-09-19 02:31:33 +02:00
|
|
|
with:
|
|
|
|
version: 3.x
|
|
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
2022-10-13 15:52:43 +02:00
|
|
|
- uses: docker/setup-qemu-action@e81a89b1732b9c48d79cd809d8d81d79c4647a18 # v2
|
2023-03-13 14:25:53 +02:00
|
|
|
- uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
|
2022-09-19 02:31:33 +02:00
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
./dist/*.deb
|
|
|
|
./dist/*.rpm
|
|
|
|
./dist/*.apk
|
|
|
|
key: ${{ github.ref }}
|
|
|
|
- run: task goreleaser:test:${{ matrix.format }}
|
|
|
|
goreleaser:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
|
|
DOCKER_CLI_EXPERIMENTAL: "enabled"
|
|
|
|
steps:
|
2023-03-17 05:11:19 +02:00
|
|
|
- uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3
|
2022-09-19 02:31:33 +02:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2023-02-01 14:19:19 +02:00
|
|
|
- uses: arduino/setup-task@e26d8975574116b0097a1161e0fe16ba75d84c1c # v1
|
2022-09-19 02:31:33 +02:00
|
|
|
with:
|
|
|
|
version: 3.x
|
|
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
2022-10-13 15:52:43 +02:00
|
|
|
- uses: docker/setup-qemu-action@e81a89b1732b9c48d79cd809d8d81d79c4647a18 # v2
|
2023-03-13 14:25:22 +02:00
|
|
|
- uses: docker/setup-buildx-action@4b4e9c3e2d4531116a6f8ba8e71fc6e2cb6e6c8c # v2
|
2022-09-19 02:31:33 +02:00
|
|
|
- name: setup-snapcraft
|
|
|
|
# FIXME: the mkdirs are a hack for https://github.com/goreleaser/goreleaser/issues/1715
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get -yq --no-install-suggests --no-install-recommends install snapcraft
|
|
|
|
mkdir -p $HOME/.cache/snapcraft/download
|
|
|
|
mkdir -p $HOME/.cache/snapcraft/stage-packages
|
2023-03-17 05:40:25 +02:00
|
|
|
- uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 # v4
|
2022-09-19 02:31:33 +02:00
|
|
|
with:
|
2023-03-17 05:40:25 +02:00
|
|
|
go-version: stable
|
2023-03-13 14:25:53 +02:00
|
|
|
- uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
|
2022-09-19 02:31:33 +02:00
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
./dist/*.deb
|
|
|
|
./dist/*.rpm
|
|
|
|
./dist/*.apk
|
|
|
|
key: ${{ github.ref }}
|
2023-05-02 14:24:53 +02:00
|
|
|
- uses: sigstore/cosign-installer@v3.0.3
|
2023-05-08 13:49:41 +02:00
|
|
|
- uses: anchore/sbom-action/download-syft@v0.14.2
|
2023-05-03 19:06:40 +02:00
|
|
|
- uses: crazy-max/ghaction-upx@v2
|
|
|
|
with:
|
|
|
|
install-only: true
|
2022-09-19 02:31:33 +02:00
|
|
|
- name: dockerhub-login
|
|
|
|
if: startsWith(github.ref, 'refs/tags/v')
|
2022-10-13 00:05:18 +02:00
|
|
|
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a # v1
|
2022-09-19 02:31:33 +02:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: ghcr-login
|
|
|
|
if: startsWith(github.ref, 'refs/tags/v')
|
2022-10-13 00:05:18 +02:00
|
|
|
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a # v1
|
2022-09-19 02:31:33 +02:00
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.repository_owner }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: snapcraft-login
|
2022-09-28 02:20:57 +02:00
|
|
|
if: startsWith(github.ref, 'refs/tags/v')
|
2022-09-19 02:31:33 +02:00
|
|
|
run: snapcraft login --with <(echo "${{ secrets.SNAPCRAFT_LOGIN }}")
|
|
|
|
- name: goreleaser-release
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
|
|
|
|
TWITTER_CONSUMER_KEY: ${{ secrets.TWITTER_CONSUMER_KEY }}
|
|
|
|
TWITTER_CONSUMER_SECRET: ${{ secrets.TWITTER_CONSUMER_SECRET }}
|
|
|
|
TWITTER_ACCESS_TOKEN: ${{ secrets.TWITTER_ACCESS_TOKEN }}
|
|
|
|
TWITTER_ACCESS_TOKEN_SECRET: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }}
|
2022-11-18 02:42:43 +02:00
|
|
|
MASTODON_CLIENT_ID: ${{ secrets.MASTODON_CLIENT_ID }}
|
|
|
|
MASTODON_CLIENT_SECRET: ${{ secrets.MASTODON_CLIENT_SECRET }}
|
|
|
|
MASTODON_ACCESS_TOKEN: ${{ secrets.MASTODON_ACCESS_TOKEN }}
|
2022-09-19 02:31:33 +02:00
|
|
|
COSIGN_PWD: ${{ secrets.COSIGN_PWD }}
|
|
|
|
FURY_TOKEN: ${{ secrets.FURY_TOKEN }}
|
|
|
|
DISCORD_WEBHOOK_ID: ${{ secrets.DISCORD_WEBHOOK_ID }}
|
|
|
|
DISCORD_WEBHOOK_TOKEN: ${{ secrets.DISCORD_WEBHOOK_TOKEN }}
|
|
|
|
AUR_KEY: ${{ secrets.AUR_KEY }}
|
|
|
|
run: task goreleaser
|