Skip to content

bump: v0.7.1

bump: v0.7.1 #148

Workflow file for this run

name: BeeAI Web
on:
push:
branches:
- main
paths:
- "apps/beeai-web/**"
permissions:
contents: read
packages: write
id-token: write
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
lfs: true
- uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3
- uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3
with:
registry: quay.io
username: beeai+github
password: ${{ secrets.QUAY_ROBOT_TOKEN }}
- uses: ./.github/actions/setup
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: mise run 'beeai-web:build:*'
- uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6
with:
context: .
file: ./apps/beeai-web/Dockerfile
push: true
tags: |
ghcr.io/${{ github.repository }}/beeai-web:${{ github.sha }}
ghcr.io/${{ github.repository }}/beeai-web:latest
quay.io/beeai/beeai-web:${{ github.sha }}
quay.io/beeai/beeai-web:latest
- run: uv cache prune --ci