Skip to content

Removing context, since this might be breaking build #253

Removing context, since this might be breaking build

Removing context, since this might be breaking build #253

Workflow file for this run

# REF: https://github.com/marketplace/actions/build-and-push-docker-images
name: Publish to DockerHub and GitHub
on:
schedule:
- cron: "0 0 */28 */1 *"
push:
branches:
- master
jobs:
multi-registries:
runs-on: ubuntu-latest
steps:
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.CR_PAT }}
-
name: Build and push
uses: docker/build-push-action@v6
with:
push: true
platforms: linux/amd64,linux/arm64
tags: |
jonasbn/ebirah:latest
ghcr.io/jonasbn/ebirah:latest
-
name: Docker Hub Description
uses: peter-evans/dockerhub-description@v4
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
repository: jonasbn/ebirah