Skip to content

Add finished_at timestamp to datasets (#462) #1040

Add finished_at timestamp to datasets (#462)

Add finished_at timestamp to datasets (#462) #1040

Workflow file for this run

# This will keep the tag:latest up-to-date with all commits and pull requests
name: Publish Docker image tag:latest
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
push:
branches: [ "master" ]
jobs:
push_to_registry_amd64:
name: Push Docker image to Docker Hub (amd64)
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_DALE_LOGIN }}
password: ${{ secrets.DOCKER_DALE_PASSWORD }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: digitalmethodsinitiative/4cat
- name: Build and push Docker image (amd64)
uses: docker/[email protected]
with:
context: .
file: docker/Dockerfile
platforms: linux/amd64
push: true
tags: digitalmethodsinitiative/4cat:latest
# We could combine the two jobs into one (with continue-on-error: true). Running two jobs has the advantage of running them at the same time, but, possibly, requires more resources.
push_to_registry_arm64:
name: Push Docker image to Docker Hub (arm64)
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_DALE_LOGIN }}
password: ${{ secrets.DOCKER_DALE_PASSWORD }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: digitalmethodsinitiative/4cat
- name: Build and push Docker image (arm64)
uses: docker/[email protected]
with:
context: .
file: docker/Dockerfile
# python:3.11-slim is not available for arm64, so we build for arm64/v8
# https://hub.docker.com/_/python/
platforms: linux/arm64/v8
push: true
tags: digitalmethodsinitiative/4cat:latest