132 lines
3.6 KiB
YAML
132 lines
3.6 KiB
YAML
name: Server CI/CD
|
|
|
|
on:
|
|
push:
|
|
branches: [ "dev", "master" ]
|
|
tags:
|
|
- '*'
|
|
pull_request:
|
|
branches: [ "dev", "master" ]
|
|
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
|
|
jobs:
|
|
build:
|
|
name: Build server binaries
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
goos: [ linux, windows ]
|
|
goarch: [ amd64 ]
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: '1.22.x'
|
|
cache: true
|
|
|
|
- name: Download modules
|
|
run: go mod download
|
|
|
|
- name: Vet & Test
|
|
run: |
|
|
go vet ./...
|
|
go test ./... -v
|
|
|
|
- name: Build cmd/server
|
|
shell: bash
|
|
run: |
|
|
mkdir -p build
|
|
EXT=""
|
|
if [ "${{ matrix.goos }}" = "windows" ]; then EXT=".exe"; fi
|
|
OUT="server-${{ matrix.goos }}-${{ matrix.goarch }}${EXT}"
|
|
echo "Building $OUT"
|
|
GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} \
|
|
go build -trimpath -ldflags="-s -w" -o "build/${OUT}" ./cmd/server
|
|
|
|
- name: Upload artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: server-${{ matrix.goos }}-${{ matrix.goarch }}
|
|
path: build/server-${{ matrix.goos }}-${{ matrix.goarch }}*
|
|
|
|
release:
|
|
name: Release binaries
|
|
needs: build
|
|
runs-on: ubuntu-latest
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
steps:
|
|
- name: Download artifacts
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
path: dist
|
|
|
|
- name: List artifacts
|
|
run: ls -R dist
|
|
|
|
- name: Create GitHub Release
|
|
uses: softprops/action-gh-release@v1
|
|
with:
|
|
files: dist/**/*
|
|
draft: false
|
|
prerelease: false
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
docker:
|
|
name: Build and push Docker image
|
|
needs: build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
- name: Setup Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Log in to GHCR
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Determine image name and tags
|
|
id: imagetags
|
|
shell: bash
|
|
run: |
|
|
IMAGE="ghcr.io/${{ github.repository_owner }}/sensitive-lexicon-server"
|
|
echo "IMAGE=$IMAGE" >> $GITHUB_ENV
|
|
if [ "${{ github.event_name }}" = "pull_request" ]; then
|
|
echo "PUSH=false" >> $GITHUB_ENV
|
|
echo "TAGS=${IMAGE}:pr-${{ github.event.pull_request.number }}" >> $GITHUB_ENV
|
|
elif [ "${{ github.ref_type }}" = "tag" ]; then
|
|
echo "PUSH=true" >> $GITHUB_ENV
|
|
echo "TAGS=${IMAGE}:${{ github.ref_name }},${IMAGE}:latest" >> $GITHUB_ENV
|
|
else
|
|
BRANCH="${{ github.ref_name }}"
|
|
echo "PUSH=true" >> $GITHUB_ENV
|
|
if [ "$BRANCH" = "dev" ] || [ "$BRANCH" = "master" ]; then
|
|
echo "TAGS=${IMAGE}:latest,${IMAGE}:sha-${{ github.sha }}" >> $GITHUB_ENV
|
|
else
|
|
echo "TAGS=${IMAGE}:branch-${BRANCH},${IMAGE}:sha-${{ github.sha }}" >> $GITHUB_ENV
|
|
fi
|
|
fi
|
|
echo "Using tags: $TAGS"
|
|
|
|
- name: Build and push
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
file: ./Dockerfile
|
|
platforms: linux/amd64,linux/arm64
|
|
push: ${{ env.PUSH }}
|
|
tags: ${{ env.TAGS }} |