chore(deps-dev): Bump anthropic from 0.34.2 to 0.35.0 (#176) #25
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: Build image | ||
on: | ||
push: | ||
# Publish semver tags as releases. | ||
tags: [ 'v*.*.*' ] | ||
env: | ||
REGISTRY: docker.io | ||
IMAGE_NAME: zepai/graphiti | ||
jobs: | ||
docker-image: | ||
Check failure on line 13 in .github/workflows/release-service-image.yml GitHub Actions / Build imageInvalid workflow file
|
||
needs: build-and-start-svc | ||
environment: | ||
name: release | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
id-token: write | ||
steps: | ||
- name: Checkout repo for tag push | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.inputs.tag || github.ref }} | ||
- name: Set up Depot CLI | ||
uses: depot/setup-action@v1 | ||
- name: Login to DockerHub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Extract Docker metadata | ||
id: meta | ||
uses: docker/[email protected] | ||
with: | ||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | ||
tags: | | ||
type=semver,pattern={{version}} | ||
type=semver,pattern={{major}}.{{minor}} | ||
type=match,pattern=v(.*-beta),group=1 | ||
type=match,pattern=v.*-(beta),group=1 | ||
- name: Depot build and push image | ||
uses: depot/build-push-action@v1 | ||
with: | ||
context: . | ||
platforms: linux/amd64,linux/arm64 | ||
push: ${{ github.event_name != 'pull_request' }} | ||
tags: ${{ steps.meta.outputs.tags || env.TAGS }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max |