Skip to content

πŸ”– Bump version: 5.0.2 β†’ 5.1.0-rc1 #8

πŸ”– Bump version: 5.0.2 β†’ 5.1.0-rc1

πŸ”– Bump version: 5.0.2 β†’ 5.1.0-rc1 #8

Workflow file for this run

name: Build ingest-file-base for ARM
on:
workflow_dispatch: {}
# schedule:
# - cron: "0 0 * * *"
push:
paths:
- Dockerfile.base
- .github/workflows/build-arm-base.yml
permissions:
packages: write
jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/openaleph/ingest-file-base
tags: |
type=ref,event=branch
type=semver,pattern={{version}}
type=sha
type=raw,value=cache
type=raw,value=latest,enable=${{ startsWith(github.ref, 'refs/tags') }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
install: true
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push release
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile.base
platforms: linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max