mirror of
https://github.com/nadoo/glider.git
synced 2025-02-23 01:15:41 +08:00
104 lines
2.8 KiB
YAML
104 lines
2.8 KiB
YAML
name: Build
|
|
on:
|
|
push:
|
|
branches:
|
|
- "dev"
|
|
tags:
|
|
- "*"
|
|
pull_request:
|
|
|
|
env:
|
|
APP_NAME: glider
|
|
DOCKERHUB_REPO: nadoo/glider
|
|
GHCR_REPO: ghcr.io/nadoo/glider
|
|
PLATFORMS: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/riscv64
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Set Vars
|
|
run: |
|
|
echo "SHA_SHORT=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
check-latest: true
|
|
go-version-file: "go.mod"
|
|
cache: true
|
|
|
|
- name: Test
|
|
run: go test -v .
|
|
|
|
- name: Build
|
|
uses: goreleaser/goreleaser-action@v6
|
|
if: "!startsWith(github.ref, 'refs/tags/')"
|
|
with:
|
|
args: build --snapshot --clean
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Upload Artifacts
|
|
uses: actions/upload-artifact@v4
|
|
if: "!startsWith(github.ref, 'refs/tags/')"
|
|
with:
|
|
name: ${{ env.APP_NAME }}-dev-${{ env.SHA_SHORT }}
|
|
path: |
|
|
./dist/default_linux_amd64_v1/${{ env.APP_NAME }}
|
|
./dist/default_linux_arm64/${{ env.APP_NAME }}
|
|
./dist/default_darwin_arm64/${{ env.APP_NAME }}
|
|
./dist/default_windows_amd64_v1/${{ env.APP_NAME }}.exe
|
|
|
|
- name: Release
|
|
uses: goreleaser/goreleaser-action@v6
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
with:
|
|
args: release --clean
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Docker - Set up Buildx
|
|
id: buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Docker - Login to DockerHub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Docker - Login to GHCR
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.repository_owner }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Docker - Docker meta
|
|
id: meta
|
|
uses: docker/metadata-action@v5
|
|
with:
|
|
images: |
|
|
${{ env.DOCKERHUB_REPO }}
|
|
${{ env.GHCR_REPO }}
|
|
tags: |
|
|
type=ref,event=branch
|
|
type=semver,pattern={{version}}
|
|
type=semver,pattern={{major}}.{{minor}}
|
|
|
|
- name: Docker - Build and push
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
file: .Dockerfile
|
|
platforms: ${{ env.PLATFORMS }}
|
|
push: ${{ github.event_name != 'pull_request' }}
|
|
tags: ${{ steps.meta.outputs.tags }}
|