Merge pull request #349 from smart-on-fhir/mikix/more-group-info #86
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Get Docker metadata | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
flavor: latest=true | |
images: smartonfhir/cumulus-etl | |
- 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 }} |