headscale/.github/workflows/release.yml

25 lines
476 B
YAML
Raw Normal View History

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