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

75 lines
2.0 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:
2021-10-21 21:18:50 +02:00
runs-on: ubuntu-18.04 # due to CGO we need to user an older version
2021-06-13 13:13:17 +02:00
steps:
2021-10-21 21:18:50 +02:00
- name: Checkout
2021-06-13 13:13:17 +02:00
uses: actions/checkout@v2
with:
fetch-depth: 0
2021-10-21 21:18:50 +02:00
- name: Set up Go
2021-06-13 13:13:17 +02:00
uses: actions/setup-go@v2
with:
go-version: 1.16
2021-10-21 19:56:36 +02:00
- name: Install dependencies
run: |
sudo apt update
sudo apt install -y gcc-aarch64-linux-gnu
2021-10-21 21:18:50 +02:00
- name: Run GoReleaser
2021-06-13 13:13:17 +02:00
uses: goreleaser/goreleaser-action@v2
with:
distribution: goreleaser
version: latest
args: release --rm-dist
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
2021-08-20 19:45:01 +02:00
uses: actions/checkout@v2
with:
fetch-depth: 0
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
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 }}