2021-08-20 13:15:20 -04:00
|
|
|
---
|
|
|
|
name: release
|
2021-06-13 07:13:17 -04:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
2021-08-20 13:15:20 -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:
|
2021-07-12 11:04:28 -04:00
|
|
|
runs-on: ubuntu-18.04 # due to CGO we need to user an older version
|
2021-06-13 07:13:17 -04:00
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
-
|
|
|
|
name: Set up Go
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
with:
|
|
|
|
go-version: 1.16
|
|
|
|
-
|
|
|
|
name: Run GoReleaser
|
|
|
|
uses: goreleaser/goreleaser-action@v2
|
|
|
|
with:
|
|
|
|
distribution: goreleaser
|
|
|
|
version: latest
|
|
|
|
args: release --rm-dist
|
|
|
|
env:
|
2021-08-20 13:15:20 -04:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
docker-release:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-08-20 13:45:01 -04:00
|
|
|
-
|
|
|
|
name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2021-08-20 13:15:20 -04:00
|
|
|
-
|
|
|
|
name: Docker meta
|
|
|
|
id: meta
|
|
|
|
uses: docker/metadata-action@v3
|
|
|
|
with:
|
|
|
|
# list of Docker images to use as base name for tags
|
|
|
|
images: |
|
2021-08-21 05:17:21 -04:00
|
|
|
${{ secrets.DOCKERHUB_USERNAME }}/headscale
|
2021-08-20 13:15:20 -04:00
|
|
|
ghcr.io/${{ github.repository_owner }}/headscale
|
|
|
|
tags: |
|
2021-09-20 18:10:00 -04:00
|
|
|
type=semver,pattern={{version}}
|
2021-08-20 13:15:20 -04:00
|
|
|
type=semver,pattern={{major}}.{{minor}}
|
|
|
|
type=semver,pattern={{major}}
|
|
|
|
type=sha
|
|
|
|
-
|
|
|
|
name: Login to DockerHub
|
|
|
|
uses: docker/login-action@v1
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
-
|
|
|
|
name: Login to GHCR
|
|
|
|
uses: docker/login-action@v1
|
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.repository_owner }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
-
|
|
|
|
name: Build and push
|
|
|
|
id: docker_build
|
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
|
|
|
push: true
|
2021-08-20 13:37:15 -04:00
|
|
|
context: .
|
2021-08-20 13:15:20 -04:00
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|