2021-08-20 17:15:20 +00:00
|
|
|
---
|
|
|
|
name: release
|
2021-06-13 11:13:17 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
2021-10-21 19:18:50 +00:00
|
|
|
- "*" # triggers only if push new tag version
|
2021-08-20 17:37:15 +00:00
|
|
|
workflow_dispatch:
|
2021-06-13 11:13:17 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
goreleaser:
|
2021-10-21 19:18:50 +00:00
|
|
|
runs-on: ubuntu-18.04 # due to CGO we need to user an older version
|
2021-06-13 11:13:17 +00:00
|
|
|
steps:
|
2021-10-21 19:18:50 +00:00
|
|
|
- name: Checkout
|
2021-06-13 11:13:17 +00:00
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2021-10-21 19:18:50 +00:00
|
|
|
- name: Set up Go
|
2021-06-13 11:13:17 +00:00
|
|
|
uses: actions/setup-go@v2
|
|
|
|
with:
|
|
|
|
go-version: 1.16
|
2021-10-21 17:56:36 +00:00
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
sudo apt update
|
|
|
|
sudo apt install -y gcc-aarch64-linux-gnu
|
2021-10-21 19:18:50 +00:00
|
|
|
- name: Run GoReleaser
|
2021-06-13 11:13:17 +00:00
|
|
|
uses: goreleaser/goreleaser-action@v2
|
|
|
|
with:
|
|
|
|
distribution: goreleaser
|
|
|
|
version: latest
|
|
|
|
args: release --rm-dist
|
|
|
|
env:
|
2021-08-20 17:15:20 +00:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
docker-release:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-10-21 19:18:50 +00:00
|
|
|
- name: Checkout
|
2021-08-20 17:45:01 +00:00
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2021-11-14 02:08:59 +00:00
|
|
|
|
|
|
|
- name: Set up QEMU for multiple platforms
|
|
|
|
uses: docker/setup-qemu-action@master
|
|
|
|
with:
|
|
|
|
platforms: arm64,amd64
|
|
|
|
|
|
|
|
- name: Cache Docker layers
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: /tmp/.buildx-cache
|
|
|
|
key: ${{ runner.os }}-buildx-${{ github.sha }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-buildx-
|
|
|
|
|
2021-10-21 19:18:50 +00:00
|
|
|
- name: Docker meta
|
2021-08-20 17:15:20 +00:00
|
|
|
id: meta
|
|
|
|
uses: docker/metadata-action@v3
|
|
|
|
with:
|
|
|
|
# list of Docker images to use as base name for tags
|
|
|
|
images: |
|
2021-08-21 09:17:21 +00:00
|
|
|
${{ secrets.DOCKERHUB_USERNAME }}/headscale
|
2021-08-20 17:15:20 +00:00
|
|
|
ghcr.io/${{ github.repository_owner }}/headscale
|
|
|
|
tags: |
|
2021-09-20 22:10:00 +00:00
|
|
|
type=semver,pattern={{version}}
|
2021-08-20 17:15:20 +00:00
|
|
|
type=semver,pattern={{major}}.{{minor}}
|
|
|
|
type=semver,pattern={{major}}
|
|
|
|
type=sha
|
2021-11-14 02:08:59 +00:00
|
|
|
|
2021-10-21 19:18:50 +00:00
|
|
|
- name: Login to DockerHub
|
2021-08-20 17:15:20 +00:00
|
|
|
uses: docker/login-action@v1
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
2021-11-14 02:08:59 +00:00
|
|
|
|
2021-10-21 19:18:50 +00:00
|
|
|
- name: Login to GHCR
|
2021-08-20 17:15:20 +00:00
|
|
|
uses: docker/login-action@v1
|
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.repository_owner }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
2021-11-14 02:08:59 +00:00
|
|
|
|
2021-10-21 19:18:50 +00:00
|
|
|
- name: Build and push
|
2021-08-20 17:15:20 +00:00
|
|
|
id: docker_build
|
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
|
|
|
push: true
|
2021-08-20 17:37:15 +00:00
|
|
|
context: .
|
2021-08-20 17:15:20 +00:00
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|
2021-11-14 02:08:59 +00:00
|
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
cache-from: type=local,src=/tmp/.buildx-cache
|
|
|
|
cache-to: type=local,dest=/tmp/.buildx-cache-new
|
|
|
|
|
|
|
|
- name: Prepare cache for next build
|
|
|
|
run: |
|
|
|
|
rm -rf /tmp/.buildx-cache
|
|
|
|
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
|