Skip to content

feat: pipeline promotion across environments with secret stripping an… #15

feat: pipeline promotion across environments with secret stripping an…

feat: pipeline promotion across environments with secret stripping an… #15

Workflow file for this run

name: CI
on:
push:
branches: [main]
tags: ["v*"]
permissions:
contents: write
packages: write
env:
REGISTRY: ghcr.io
jobs:
check:
name: Type Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- run: pnpm install --frozen-lockfile
- name: Generate Prisma client
run: npx prisma generate
- name: Type check
run: npx tsc --noEmit
server-image:
name: Server Image
needs: check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/terrifiedbug/vectorflow-server
tags: |
type=ref,event=branch
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=raw,value=latest,enable=${{ startsWith(github.ref, 'refs/tags/v') }}
- uses: docker/setup-buildx-action@v3
- uses: docker/build-push-action@v6
with:
context: .
file: docker/server/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
agent-image:
name: Agent Image
needs: check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/terrifiedbug/vectorflow-agent
tags: |
type=ref,event=branch
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=raw,value=latest,enable=${{ startsWith(github.ref, 'refs/tags/v') }}
- uses: docker/setup-buildx-action@v3
- uses: docker/build-push-action@v6
with:
context: agent
file: agent/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
agent-binaries:
name: Agent Binaries
needs: check
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.22"
cache-dependency-path: agent/go.sum
- name: Build binaries
working-directory: agent
run: |
VERSION="${GITHUB_REF_NAME#v}"
LDFLAGS="-s -w -X github.com/TerrifiedBug/vectorflow/agent/internal/agent.Version=${VERSION}"
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags="${LDFLAGS}" -o ../vf-agent-linux-amd64 .
CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -ldflags="${LDFLAGS}" -o ../vf-agent-linux-arm64 .
- uses: actions/upload-artifact@v4
with:
name: agent-binaries
path: |
vf-agent-linux-amd64
vf-agent-linux-arm64
release:
name: GitHub Release
needs: [server-image, agent-image, agent-binaries]
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
name: agent-binaries
- name: Make binaries executable
run: chmod +x vf-agent-linux-*
- uses: softprops/action-gh-release@v2
with:
generate_release_notes: true
files: |
vf-agent-linux-amd64
vf-agent-linux-arm64