add tailscale tags to every bastion #10
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
permissions: | |
contents: write | |
name: release | |
on: | |
push: | |
tags: | |
- v*.*.* | |
- '!v*.*.*-**' | |
jobs: | |
goreleaser: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Unshallow clone | |
run: git fetch --prune --unshallow | |
- name: Install Go 1.19 | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '1.19.x' | |
- name: Goreleaser publish | |
uses: goreleaser/goreleaser-action@v1 | |
with: | |
version: v1.12.1 | |
args: release --rm-dist | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} |