headscale/.github/workflows/release.yml

83 lines
2.1 KiB
YAML
Raw Normal View History

2021-08-21 01:15:20 +08:00
---
name: release
2021-06-13 19:13:17 +08:00
on:
push:
tags:
2021-08-21 01:15:20 +08:00
- "*" # triggers only if push new tag version
2021-08-21 01:37:15 +08:00
workflow_dispatch:
2021-06-13 19:13:17 +08:00
jobs:
goreleaser:
2021-07-12 23:04:28 +08:00
runs-on: ubuntu-18.04 # due to CGO we need to user an older version
2021-06-13 19:13:17 +08: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
2021-10-22 01:56:36 +08:00
- name: Install dependencies
run: |
sudo apt update
sudo apt install -y gcc-aarch64-linux-gnu
2021-06-13 19:13:17 +08:00
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
distribution: goreleaser
version: latest
args: release --rm-dist
env:
2021-08-21 01:15:20 +08:00
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
docker-release:
runs-on: ubuntu-latest
steps:
2021-08-21 01:45:01 +08:00
-
name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
2021-08-21 01:15:20 +08:00
-
name: Docker meta
id: meta
uses: docker/metadata-action@v3
with:
# list of Docker images to use as base name for tags
images: |
${{ secrets.DOCKERHUB_USERNAME }}/headscale
2021-08-21 01:15:20 +08:00
ghcr.io/${{ github.repository_owner }}/headscale
tags: |
type=semver,pattern={{version}}
2021-08-21 01:15:20 +08: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-21 01:37:15 +08:00
context: .
2021-08-21 01:15:20 +08:00
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}