Skip to content

raku-dan:latest -> DH #45

raku-dan:latest -> DH

raku-dan:latest -> DH #45

Workflow file for this run

name: raku-dan:latest -> DH
on:
push:
paths:
- Dockerfile
- .github/workflows/dan-weekly.yaml
schedule:
- cron: "58 3 * * 4"
jobs:
build-latest:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
with:
platforms: linux/arm64,linux/amd64
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
tags: librasteve/raku-dan:latest
push: true
platforms: linux/arm64,linux/amd64
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}