Skip to content

Merge pull request #354 from smart-on-fhir/mikix/completion-by-default #95

Merge pull request #354 from smart-on-fhir/mikix/completion-by-default

Merge pull request #354 from smart-on-fhir/mikix/completion-by-default #95

Workflow file for this run

name: Docker Hub
# Currently, we publish every commit to main into Docker hub.
# In the future, we may to trigger off of actual release tags.
on:
push:
branches:
- main
jobs:
push_to_docker_hub:
name: Build and push image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Grab version
run: echo "ETL_VERSION=$(grep __version__ cumulus_etl/__init__.py | cut -d'"' -f2)" >> $GITHUB_ENV
- name: Get Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
flavor: latest=true
images: smartonfhir/cumulus-etl
tags: |
type=ref,event=branch
type=pep440,pattern={{major}},value=${{ env.ETL_VERSION }}
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push image to Docker Hub
uses: docker/build-push-action@v6
with:
push: true
platforms: |
linux/amd64
linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
LOCAL_VERSION=${{ github.sha }}