2021-08-20 17:15:20 +00:00
|
|
|
---
|
2022-11-03 10:30:36 +00:00
|
|
|
name: Release
|
2021-06-13 11:13:17 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
2021-10-21 19:18:50 +00:00
|
|
|
- "*" # triggers only if push new tag version
|
2021-08-20 17:37:15 +00:00
|
|
|
workflow_dispatch:
|
2021-06-13 11:13:17 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
goreleaser:
|
2022-12-05 08:10:51 +00:00
|
|
|
runs-on: ubuntu-latest
|
2021-06-13 11:13:17 +00:00
|
|
|
steps:
|
2021-10-21 19:18:50 +00:00
|
|
|
- name: Checkout
|
2022-11-04 09:40:39 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-06-13 11:13:17 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2021-10-21 17:56:36 +00:00
|
|
|
|
2022-12-05 08:10:51 +00:00
|
|
|
- uses: cachix/install-nix-action@v16
|
|
|
|
|
|
|
|
- name: Run goreleaser
|
|
|
|
run: nix develop --command -- goreleaser release --rm-dist
|
2021-06-13 11:13:17 +00:00
|
|
|
env:
|
2021-08-20 17:15:20 +00:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|