mirror of
https://github.com/tiennm99/goclaw.git
synced 2026-06-11 18:12:09 +00:00
391a263709
- notify-discord uses always() so it fires even if docker jobs fail - Move GHCR_IMAGE/DOCKERHUB_IMAGE to workflow-level env block
263 lines
8.3 KiB
YAML
263 lines
8.3 KiB
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
permissions:
|
|
contents: write
|
|
packages: write
|
|
|
|
env:
|
|
GHCR_IMAGE: ghcr.io/${{ github.repository }}
|
|
DOCKERHUB_IMAGE: digitop/goclaw
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
version: ${{ steps.semrel.outputs.version }}
|
|
released: ${{ steps.semrel.outputs.version != '' }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- id: semrel
|
|
uses: go-semantic-release/action@v1
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
allow-initial-development-versions: true
|
|
|
|
# Build cross-platform binaries and attach to release
|
|
build-binaries:
|
|
needs: release
|
|
if: needs.release.outputs.released == 'true'
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
include:
|
|
- goos: linux
|
|
goarch: amd64
|
|
- goos: linux
|
|
goarch: arm64
|
|
- goos: darwin
|
|
goarch: amd64
|
|
- goos: darwin
|
|
goarch: arm64
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version-file: go.mod
|
|
cache-dependency-path: go.sum
|
|
|
|
- name: Build binary
|
|
env:
|
|
GOOS: ${{ matrix.goos }}
|
|
GOARCH: ${{ matrix.goarch }}
|
|
VERSION: v${{ needs.release.outputs.version }}
|
|
run: |
|
|
CGO_ENABLED=0 go build \
|
|
-ldflags="-s -w -X github.com/nextlevelbuilder/goclaw/cmd.Version=${VERSION}" \
|
|
-o goclaw .
|
|
tar -czf "goclaw-${{ needs.release.outputs.version }}-${{ matrix.goos }}-${{ matrix.goarch }}.tar.gz" goclaw migrations/
|
|
|
|
- name: Upload to release
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: |
|
|
gh release upload "v${{ needs.release.outputs.version }}" \
|
|
"goclaw-${{ needs.release.outputs.version }}-${{ matrix.goos }}-${{ matrix.goarch }}.tar.gz" \
|
|
--clobber
|
|
|
|
# Build and push Docker images to GHCR + Docker Hub
|
|
docker-images:
|
|
needs: release
|
|
if: needs.release.outputs.released == 'true'
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
include:
|
|
- variant: latest
|
|
suffix: ""
|
|
enable_otel: "false"
|
|
enable_tsnet: "false"
|
|
enable_redis: "false"
|
|
enable_node: "false"
|
|
enable_python: "false"
|
|
enable_full_skills: "false"
|
|
- variant: node
|
|
suffix: "-node"
|
|
enable_otel: "false"
|
|
enable_tsnet: "false"
|
|
enable_redis: "false"
|
|
enable_node: "true"
|
|
enable_python: "false"
|
|
enable_full_skills: "false"
|
|
- variant: python
|
|
suffix: "-python"
|
|
enable_otel: "false"
|
|
enable_tsnet: "false"
|
|
enable_redis: "false"
|
|
enable_node: "false"
|
|
enable_python: "true"
|
|
enable_full_skills: "false"
|
|
- variant: full
|
|
suffix: "-full"
|
|
enable_otel: "false"
|
|
enable_tsnet: "false"
|
|
enable_redis: "false"
|
|
enable_node: "true"
|
|
enable_python: "true"
|
|
enable_full_skills: "true"
|
|
- variant: otel
|
|
suffix: "-otel"
|
|
enable_otel: "true"
|
|
enable_tsnet: "false"
|
|
enable_redis: "false"
|
|
enable_node: "false"
|
|
enable_python: "false"
|
|
enable_full_skills: "false"
|
|
- variant: tsnet
|
|
suffix: "-tsnet"
|
|
enable_otel: "false"
|
|
enable_tsnet: "true"
|
|
enable_redis: "false"
|
|
enable_node: "false"
|
|
enable_python: "false"
|
|
enable_full_skills: "false"
|
|
- variant: redis
|
|
suffix: "-redis"
|
|
enable_otel: "false"
|
|
enable_tsnet: "false"
|
|
enable_redis: "true"
|
|
enable_node: "false"
|
|
enable_python: "false"
|
|
enable_full_skills: "false"
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: docker/setup-qemu-action@v3
|
|
|
|
- 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: Log in to Docker Hub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Extract metadata
|
|
id: meta
|
|
uses: docker/metadata-action@v5
|
|
with:
|
|
images: |
|
|
${{ env.GHCR_IMAGE }}
|
|
${{ env.DOCKERHUB_IMAGE }}
|
|
tags: |
|
|
type=raw,value=v${{ needs.release.outputs.version }},suffix=${{ matrix.suffix }}
|
|
type=raw,value=latest,enable=${{ matrix.suffix == '' }},suffix=
|
|
type=raw,value=${{ matrix.variant }},enable=${{ matrix.suffix != '' }}
|
|
|
|
- name: Build and push
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
platforms: linux/amd64,linux/arm64
|
|
push: true
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
build-args: |
|
|
ENABLE_OTEL=${{ matrix.enable_otel }}
|
|
ENABLE_TSNET=${{ matrix.enable_tsnet }}
|
|
ENABLE_REDIS=${{ matrix.enable_redis }}
|
|
ENABLE_NODE=${{ matrix.enable_node }}
|
|
ENABLE_PYTHON=${{ matrix.enable_python }}
|
|
ENABLE_FULL_SKILLS=${{ matrix.enable_full_skills }}
|
|
VERSION=v${{ needs.release.outputs.version }}
|
|
cache-from: type=gha,scope=${{ matrix.variant }}
|
|
cache-to: type=gha,mode=max,scope=${{ matrix.variant }}
|
|
|
|
# Build and push web UI Docker image
|
|
docker-web:
|
|
needs: release
|
|
if: needs.release.outputs.released == 'true'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: docker/setup-qemu-action@v3
|
|
|
|
- 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: Log in to Docker Hub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Extract metadata
|
|
id: meta
|
|
uses: docker/metadata-action@v5
|
|
with:
|
|
images: |
|
|
${{ env.GHCR_IMAGE }}-web
|
|
${{ env.DOCKERHUB_IMAGE }}-web
|
|
tags: |
|
|
type=raw,value=v${{ needs.release.outputs.version }}
|
|
type=raw,value=latest
|
|
|
|
- name: Build and push
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: ui/web
|
|
platforms: linux/amd64,linux/arm64
|
|
push: true
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
cache-from: type=gha,scope=web
|
|
cache-to: type=gha,mode=max,scope=web
|
|
|
|
# Notify Discord on new release (runs even if docker jobs fail)
|
|
notify-discord:
|
|
needs: [release, build-binaries, docker-images, docker-web]
|
|
if: always() && needs.release.outputs.released == 'true' && !cancelled()
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Send Discord notification
|
|
env:
|
|
DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }}
|
|
VERSION: v${{ needs.release.outputs.version }}
|
|
run: |
|
|
curl -fsSL -H "Content-Type: application/json" \
|
|
-d "{
|
|
\"embeds\": [{
|
|
\"title\": \"GoClaw ${VERSION} Released\",
|
|
\"url\": \"https://github.com/${{ github.repository }}/releases/tag/${VERSION}\",
|
|
\"color\": 5814783,
|
|
\"fields\": [
|
|
{\"name\": \"Docker\", \"value\": \"\`docker pull digitop/goclaw:latest\`\", \"inline\": false},
|
|
{\"name\": \"Install\", \"value\": \"\`curl -fsSL https://raw.githubusercontent.com/${{ github.repository }}/main/scripts/install.sh | bash\`\", \"inline\": false}
|
|
],
|
|
\"footer\": {\"text\": \"${{ github.repository }}\"},
|
|
\"timestamp\": \"$(date -u +%Y-%m-%dT%H:%M:%SZ)\"
|
|
}]
|
|
}" \
|
|
"$DISCORD_WEBHOOK_URL"
|