feat: add ai proxy #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CD / AI Proxy | |
on: | |
pull_request: | |
branches: | |
- "master" | |
paths: | |
- "go/ai-proxy/**" | |
push: | |
tags: | |
- 'v*.*.*' | |
permissions: | |
contents: read | |
env: | |
GOPATH: /home/runner/go | |
GOBIN: /home/runner/go/bin | |
GOPROXY: "https://proxy.golang.org" | |
jobs: | |
test: | |
name: Unit test | |
runs-on: ubuntu-20.04 | |
defaults: | |
run: | |
shell: bash | |
working-directory: go/ai-proxy | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
go-version-file: go/ai-proxy/go.mod | |
cache: true | |
- run: go mod download | |
- run: PATH=$PATH:$GOPATH/bin make --directory=.. tools | |
- run: PATH=$PATH:$GOPATH/bin make test | |
publish-docker: | |
name: Build and push ai-proxy container | |
runs-on: ubuntu-20.04 | |
defaults: | |
run: | |
shell: bash | |
working-directory: go/ai-proxy | |
needs: [ test ] | |
permissions: | |
contents: 'read' | |
id-token: 'write' | |
packages: 'write' | |
steps: | |
- uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: | | |
ghcr.io/pluralsh/ai-proxy | |
gcr.io/pluralsh/ai-proxy | |
docker.io/pluralsh/ai-proxy | |
tags: | | |
type=sha | |
type=ref,event=pr | |
type=ref,event=branch | |
type=semver,pattern={{version}},priority=1000 | |
- uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- uses: google-github-actions/auth@v1 | |
with: | |
workload_identity_provider: 'projects/${{ secrets.GOOGLE_PROJECT_ID }}/locations/global/workloadIdentityPools/github/providers/github' | |
service_account: '[email protected]' | |
token_format: 'access_token' | |
create_credentials_file: true | |
- uses: google-github-actions/[email protected] | |
- run: gcloud auth configure-docker -q | |
- uses: docker/login-action@v3 | |
with: | |
username: mjgpluralsh | |
password: ${{ secrets.DOCKER_ACCESS_TOKEN }} | |
- uses: docker/setup-qemu-action@v3 | |
- uses: docker/[email protected] | |
- uses: docker/[email protected] | |
with: | |
context: "./go/ai-proxy" | |
file: "./go/ai-proxy/Dockerfile" | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
platforms: linux/amd64,linux/arm64 | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
build-args: | | |
GIT_COMMIT=${{ github.sha }} | |
VERSION=${{ steps.meta.outputs.version }} |