Docker Image CI #253
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 CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
push_to_registry: | |
name: Build and push Docker images to Docker Hub | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Log in to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Build and push Bullseye Docker image | |
uses: docker/build-push-action@v6 | |
with: | |
build-args: "debian_release=bullseye" | |
context: . | |
file: ./Dockerfile | |
push: true | |
tags: "midwan/amiberry-debian-armhf:bullseye" | |
- name: Build and push Bookworm Docker image | |
uses: docker/build-push-action@v6 | |
with: | |
build-args: "debian_release=bookworm" | |
context: . | |
file: ./Dockerfile | |
push: true | |
tags: "midwan/amiberry-debian-armhf:bookworm, midwan/amiberry-debian-armhf:latest" |