Update cd.yaml #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker Image CD | |
on: | |
push: | |
branches: [master] | |
env: | |
REDIS_VERSION: latest | |
REDIS_SENTINEL_VERSION: latest | |
REDIS_EXPORTER_VERSION: latest | |
jobs: | |
build_redis: | |
strategy: | |
matrix: | |
version: [v6.2.14, v7.0.15, latest] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Login to Quay | |
uses: docker/login-action@v2 | |
with: | |
registry: quay.io | |
username: ${{ secrets.QUAY_USERNAME }} | |
password: ${{ secrets.QUAY_PASSWORD }} | |
- name: Build and push multi-arch latest image | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
file: Dockerfile | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
build-args: | | |
REDIS_VERSION=${{ matrix.version }} | |
tags: quay.io/opstree/redis:${{ matrix.version }} | |
build_redis_sentinel: | |
strategy: | |
matrix: | |
version: [v6.2.14, v7.0.15, latest] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Login to Quay | |
uses: docker/login-action@v2 | |
with: | |
registry: quay.io | |
username: ${{ secrets.QUAY_USERNAME }} | |
password: ${{ secrets.QUAY_PASSWORD }} | |
- name: Build and push multi-arch latest image | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
file: Dockerfile.sentinel | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
build-args: | | |
REDIS_SENTINEL_VERSION=${{ matrix.version }} | |
tags: quay.io/opstree/redis-sentinel:${{ matrix.version }} | |
build_redis_exporter: | |
strategy: | |
matrix: | |
version: [v1.48.0] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Login to Quay | |
uses: docker/login-action@v2 | |
with: | |
registry: quay.io | |
username: ${{ secrets.QUAY_USERNAME }} | |
password: ${{ secrets.QUAY_PASSWORD }} | |
- name: Build and push multi-arch latest image | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
file: Dockerfile.exporter | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
build-args: | | |
REDIS_EXPORTER_VERSION=${{ matrix.version }} | |
tags: quay.io/opstree/redis-exporter:${{ matrix.version }} |