Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Merge pull request #474 from CSCfi/archival-notice #174

Merge pull request #474 from CSCfi/archival-notice

Merge pull request #474 from CSCfi/archival-notice #174

Workflow file for this run

name: Publish Docker image
on:
release:
types: [published]
push:
branches: [master]
tags:
- "v*"
jobs:
push_to_registry:
name: Push beacon python Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: cscfi/beacon-python
tags: |
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'master') }}
type=raw,value=stage,enable=${{ github.ref == format('refs/heads/{0}', 'dev') }}
type=ref,event=tag
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
cache-from: type=registry,ref=cscfi/beacon-python:latest
cache-to: type=inline
labels: |
org.opencontainers.image.source=${{ github.event.repository.clone_url }}
org.opencontainers.image.created=$(date -u +'%Y-%m-%dT%H:%M:%SZ')
org.opencontainers.image.revision=${{ github.sha }}
- name: Build and push dataloader
uses: docker/build-push-action@v5
with:
run: |
pushd deploy/dataloader
context: .
file: ./Dockerfile
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
cache-from: type=registry,ref=cscfi/beacon-dataloader:latest
cache-to: type=inline
labels: |
org.opencontainers.image.source=${{ github.event.repository.clone_url }}
org.opencontainers.image.created=$(date -u +'%Y-%m-%dT%H:%M:%SZ')
org.opencontainers.image.revision=${{ github.sha }}