headscale/.github/workflows/release.yml

224 lines
7.2 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-10-22 03:18:50 +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-10-22 03:18:50 +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:
2021-10-22 03:18:50 +08:00
- name: Checkout
2021-06-13 19:13:17 +08:00
uses: actions/checkout@v2
with:
fetch-depth: 0
2021-10-22 03:18:50 +08:00
- name: Set up Go
2021-06-13 19:13:17 +08:00
uses: actions/setup-go@v2
with:
go-version: 1.17.7
2021-10-22 01:56:36 +08:00
- name: Install dependencies
run: |
sudo apt update
sudo apt install -y gcc-aarch64-linux-gnu
2021-10-22 03:18:50 +08:00
- name: Run GoReleaser
2021-06-13 19:13:17 +08:00
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-10-22 03:18:50 +08:00
- name: Checkout
2021-08-21 01:45:01 +08:00
uses: actions/checkout@v2
with:
fetch-depth: 0
2021-12-28 04:24:57 +08:00
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- 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-22 03:18:50 +08:00
- name: Docker meta
2021-08-21 01:15:20 +08:00
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}}
2021-12-28 04:24:57 +08:00
type=raw,value=latest
2021-08-21 01:15:20 +08:00
type=sha
2021-10-22 03:18:50 +08:00
- name: Login to DockerHub
2021-08-21 01:15:20 +08:00
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
2021-10-22 03:18:50 +08:00
- name: Login to GHCR
2021-08-21 01:15:20 +08:00
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
2021-10-22 03:18:50 +08:00
- name: Build and push
2021-08-21 01:15:20 +08:00
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 }}
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
2021-11-17 08:10:42 +08:00
2021-11-15 04:15:33 +08:00
docker-debug-release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
2021-12-28 04:24:57 +08:00
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
2021-11-17 08:10:42 +08: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-debug
key: ${{ runner.os }}-buildx-debug-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-debug-
2021-11-15 04:15:33 +08:00
- name: Docker meta
id: meta-debug
2021-11-15 04:15:33 +08:00
uses: docker/metadata-action@v3
with:
# list of Docker images to use as base name for tags
images: |
${{ secrets.DOCKERHUB_USERNAME }}/headscale
ghcr.io/${{ github.repository_owner }}/headscale
flavor: |
latest=false
2021-11-15 04:15:33 +08:00
tags: |
type=semver,pattern={{version}}-debug
type=semver,pattern={{major}}.{{minor}}-debug
type=semver,pattern={{major}}-debug
type=raw,value=latest-debug
type=sha,suffix=-debug
2021-11-15 04:15:33 +08:00
- 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
context: .
file: Dockerfile.debug
tags: ${{ steps.meta-debug.outputs.tags }}
labels: ${{ steps.meta-debug.outputs.labels }}
2021-11-17 08:10:42 +08:00
platforms: linux/amd64,linux/arm64
cache-from: type=local,src=/tmp/.buildx-cache-debug
cache-to: type=local,dest=/tmp/.buildx-cache-debug-new
- name: Prepare cache for next build
run: |
2021-12-28 04:24:57 +08:00
rm -rf /tmp/.buildx-cache-debug
2021-11-18 05:25:37 +08:00
mv /tmp/.buildx-cache-debug-new /tmp/.buildx-cache-debug
2022-01-12 20:29:59 +08:00
docker-alpine-release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- 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-alpine
key: ${{ runner.os }}-buildx-alpine-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-alpine-
- name: Docker meta
id: meta-alpine
uses: docker/metadata-action@v3
with:
# list of Docker images to use as base name for tags
images: |
${{ secrets.DOCKERHUB_USERNAME }}/headscale
ghcr.io/${{ github.repository_owner }}/headscale
flavor: |
latest=false
tags: |
type=semver,pattern={{version}}-alpine
type=semver,pattern={{major}}.{{minor}}-alpine
type=semver,pattern={{major}}-alpine
type=raw,value=latest-alpine
type=sha,suffix=-alpine
- 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
context: .
file: Dockerfile.alpine
tags: ${{ steps.meta-alpine.outputs.tags }}
labels: ${{ steps.meta-alpine.outputs.labels }}
platforms: linux/amd64,linux/arm64
cache-from: type=local,src=/tmp/.buildx-cache-alpine
cache-to: type=local,dest=/tmp/.buildx-cache-alpine-new
- name: Prepare cache for next build
run: |
rm -rf /tmp/.buildx-cache-alpine
mv /tmp/.buildx-cache-alpine-new /tmp/.buildx-cache-alpine