Build cephclient container image #1198
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: Build cephclient container image | |
"on": | |
workflow_dispatch: | |
schedule: | |
- cron: "0 3 * * *" | |
push: | |
paths: | |
- .github/workflows/build-cephclient-container-image.yml | |
- cephclient/** | |
branches: | |
- main | |
pull_request: | |
paths: | |
- .github/workflows/build-cephclient-container-image.yml | |
- cephclient/** | |
jobs: | |
build-cephclient-container-image: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
version: | |
- quincy | |
- reef | |
- squid | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup docker | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ secrets.DOCKER_REGISTRY }} | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
if: github.ref == 'refs/heads/main' | |
- name: Build container image | |
run: scripts/build.sh | |
env: | |
DOCKER_REGISTRY: ${{ secrets.DOCKER_REGISTRY }} | |
IMAGE: cephclient | |
REPOSITORY: osism/cephclient | |
VERSION: ${{ matrix.version }} | |
- name: Push container image | |
run: | | |
scripts/push.sh | |
env: | |
DOCKER_REGISTRY: ${{ secrets.DOCKER_REGISTRY }} | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
IMAGE: cephclient | |
REPOSITORY: osism/cephclient | |
VERSION: ${{ matrix.version }} | |
if: | | |
github.repository == 'osism/container-images' && | |
github.ref == 'refs/heads/main' |