Skip to content

update release action #890

update release action

update release action #890

Workflow file for this run

name: Attu Dev Release
on:
pull_request_target:
branches: [main]
types: [closed]
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
install: true
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PWD }}
- name: Docker Build and Push for Multi-Platform
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64,linux/arm/v7
tags: |
zilliz/attu:dev
cache-from: type=registry,ref=zilliz/attu:cache
cache-to: type=inline
build-args: |
VERSION=dev
push: true