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