mirror of
https://github.com/fosrl/gerbil.git
synced 2026-02-08 05:56:40 +00:00
50 lines
1.2 KiB
YAML
50 lines
1.2 KiB
YAML
name: CI/CD Pipeline
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "*"
|
|
|
|
jobs:
|
|
release:
|
|
name: Build and Release
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
- name: Log in to Docker Hub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
|
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
|
|
|
|
- name: Extract tag name
|
|
id: get-tag
|
|
run: echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
|
|
|
|
- name: Install Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: 1.23.1
|
|
|
|
- name: Build and push Docker images
|
|
run: |
|
|
TAG=${{ env.TAG }}
|
|
make docker-build-release tag=$TAG
|
|
|
|
- name: Build binaries
|
|
run: |
|
|
make go-build-release
|
|
|
|
- name: Upload artifacts from /bin
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: binaries
|
|
path: bin/
|
|
|