1
0
mirror of https://github.com/juanfont/headscale.git synced 2024-10-17 20:05:55 +02:00
juanfont.headscale/.github/workflows/release.yml

154 lines
4.8 KiB
YAML
Raw Normal View History

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