Docker Build #76
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 Build | |
on: | |
workflow_dispatch: | |
schedule: | |
# Run every day at midnight | |
- cron: '0 0 * * *' | |
push: | |
paths: | |
- docker/**/* | |
- .github/workflows/docker.yml | |
jobs: | |
build: | |
name: Build | |
# We need to make sure both the Dockerfile and the branch is main | |
if: ${{ github.ref == 'refs/heads/main' }} | |
permissions: | |
actions: write | |
contents: read | |
packages: write | |
strategy: | |
matrix: | |
include: | |
- name: build | |
file: docker/build.dockerfile | |
runs-on: scuffle-ci | |
- name: cockroach | |
file: docker/cockroach.dockerfile | |
runs-on: ubuntu-latest | |
- name: minio | |
file: docker/minio.dockerfile | |
runs-on: ubuntu-latest | |
- name: nats | |
file: docker/nats.dockerfile | |
runs-on: ubuntu-latest | |
- name: redis | |
file: docker/redis.dockerfile | |
runs-on: ubuntu-latest | |
runs-on: ${{ matrix.runs-on }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Docker Buildx | |
uses: docker/[email protected] | |
- name: Login to GitHub Container Registry | |
uses: docker/[email protected] | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build Image | |
uses: docker/[email protected] | |
with: | |
context: . | |
file: ./${{ matrix.file }} | |
push: true | |
tags: | | |
ghcr.io/scuffletv/ci/${{ matrix.name }}:${{ github.sha }} | |
ghcr.io/scuffletv/ci/${{ matrix.name }}:latest |