headscale/.github/workflows/release.yml

154 lines
4.8 KiB
YAML
Raw Normal View History

2021-08-20 13:15:20 -04:00
---
name: Release
2021-06-13 07:13:17 -04:00
on:
push:
tags:
2021-10-21 15:18:50 -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:
runs-on: ubuntu-latest
2021-06-13 07:13:17 -04:00
steps:
2021-10-21 15:18:50 -04:00
- name: Checkout
uses: actions/checkout@v3
2021-06-13 07:13:17 -04:00
with:
fetch-depth: 0
2021-10-21 13:56:36 -04:00
- uses: cachix/install-nix-action@v16
- name: Run goreleaser
run: nix develop --command -- goreleaser release --rm-dist
2021-06-13 07:13:17 -04:00
env:
2021-08-20 13:15:20 -04:00
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
docker-release:
runs-on: ubuntu-latest
steps:
2021-10-21 15:18:50 -04:00
- name: Checkout
uses: actions/checkout@v3
2021-08-20 13:45:01 -04:00
with:
fetch-depth: 0
2021-12-27 15:24:57 -05: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-21 15:18:50 -04:00
- name: Docker meta
2021-08-20 13:15:20 -04: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-20 13:15:20 -04:00
ghcr.io/${{ github.repository_owner }}/headscale
tags: |
type=semver,pattern={{version}}
2021-08-20 13:15:20 -04:00
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=sha
type=raw,value=develop
2021-10-21 15:18:50 -04:00
- name: Login to DockerHub
2021-08-20 13:15:20 -04:00
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
2021-10-21 15:18:50 -04:00
- name: Login to GHCR
2021-08-20 13:15:20 -04:00
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
2021-10-21 15:18:50 -04:00
- name: Build and push
2021-08-20 13:15:20 -04:00
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 }}
platforms: linux/amd64,linux/arm64
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new
2022-06-18 05:39:27 -04:00
build-args: |
2022-06-18 06:00:02 -04:00
VERSION=${{ steps.meta.outputs.version }}
- name: Prepare cache for next build
run: |
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
2021-11-16 19:10:42 -05:00
2021-11-14 15:15:33 -05:00
docker-debug-release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
2021-11-14 15:15:33 -05:00
with:
fetch-depth: 0
2021-12-27 15:24:57 -05:00
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
2021-11-16 19:10:42 -05: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-14 15:15:33 -05:00
- name: Docker meta
id: meta-debug
2021-11-14 15:15:33 -05: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: |
suffix=-debug,onlatest=true
2021-11-14 15:15:33 -05:00
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=sha
type=raw,value=develop
2021-11-14 15:15:33 -05: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-16 19:10:42 -05: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
2022-06-18 05:39:27 -04:00
build-args: |
2022-06-18 06:00:02 -04:00
VERSION=${{ steps.meta-debug.outputs.version }}
2021-11-16 19:10:42 -05:00
- name: Prepare cache for next build
run: |
2021-12-27 15:24:57 -05:00
rm -rf /tmp/.buildx-cache-debug
2021-11-17 16:25:37 -05:00
mv /tmp/.buildx-cache-debug-new /tmp/.buildx-cache-debug