2021-08-20 19:15:20 +02:00
|
|
|
---
|
2022-11-03 11:30:36 +01:00
|
|
|
name: Release
|
2021-06-13 13:13:17 +02:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
2021-10-21 21:18:50 +02:00
|
|
|
- "*" # triggers only if push new tag version
|
2021-08-20 19:37:15 +02:00
|
|
|
workflow_dispatch:
|
2021-06-13 13:13:17 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
goreleaser:
|
2022-12-05 09:10:51 +01:00
|
|
|
runs-on: ubuntu-latest
|
2021-06-13 13:13:17 +02:00
|
|
|
steps:
|
2021-10-21 21:18:50 +02:00
|
|
|
- name: Checkout
|
2024-03-13 13:43:06 +01:00
|
|
|
uses: actions/checkout@v4
|
2021-06-13 13:13:17 +02:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2021-10-21 19:56:36 +02:00
|
|
|
|
2024-02-12 16:01:56 +01:00
|
|
|
- name: Login to DockerHub
|
2024-03-13 13:43:06 +01:00
|
|
|
uses: docker/login-action@v3
|
2024-02-12 16:01:56 +01:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: Login to GHCR
|
2024-03-13 13:43:06 +01:00
|
|
|
uses: docker/login-action@v3
|
2024-02-12 16:01:56 +01:00
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.repository_owner }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
2023-06-28 11:56:35 +01:00
|
|
|
- uses: DeterminateSystems/nix-installer-action@main
|
|
|
|
- uses: DeterminateSystems/magic-nix-cache-action@main
|
2022-12-05 09:10:51 +01:00
|
|
|
|
|
|
|
- name: Run goreleaser
|
2024-02-12 15:09:19 +01:00
|
|
|
run: nix develop --command -- goreleaser release --clean
|
2021-06-13 13:13:17 +02:00
|
|
|
env:
|
2021-08-20 19:15:20 +02:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|