Skip to content

Build Valkey image

Build Valkey image #16

Workflow file for this run

---
name: Build Valkey image
on:
push:
branches:
- main
paths:
- 'valkey/**'
- '!valkey/README.md'
- '.github/workflows/build-valkey.yml'
workflow_dispatch:
schedule:
- cron: '35 4 * * 6' # Every Saturday at 04:35am
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
strategy:
matrix:
version: ['7.2.5']
steps:
- name: Check-out repository
uses: actions/checkout@v4
- name: Set up QEMU (for multi-arch build)
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push image to registry
uses: docker/build-push-action@v5
with:
platforms: linux/amd64,linux/arm64
context: ./valkey
file: ./valkey/Dockerfile
push: true
build-args: |
VERSION=${{ matrix.version }}
tags: |
ghcr.io/f-bn/valkey:${{ matrix.version }}
ghcr.io/f-bn/valkey:latest