Skip to content

Tracking PR for v0.14.0 relese #4737

Tracking PR for v0.14.0 relese

Tracking PR for v0.14.0 relese #4737

Workflow file for this run

name: Docker Build Check
on:
push:
branches: [main, next]
pull_request:
types: [opened, reopened, synchronize]
permissions:
contents: read
id-token: write
jobs:
docker-build:
runs-on: Linux-ARM64-Runner
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push
uses: docker/build-push-action@v6
with:
push: false
file: ./bin/node/Dockerfile
cache-from: type=gha
# Only save cache on push into next
cache-to: ${{ github.event_name == 'push' && github.ref == 'refs/heads/next' && 'type=gha,mode=max' || '' }}