Skip to content

📝 Tweak and fix tag to use (#71) #73

📝 Tweak and fix tag to use (#71)

📝 Tweak and fix tag to use (#71) #73

Workflow file for this run

name: Docker Deploy
on:
push:
branches:
- main
release:
types:
- published
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
push: true
platforms: linux/amd64,linux/arm64
tags: |
tiangolo/latest-changes:latest
ghcr.io/tiangolo/latest-changes:latest
file: base.dockerfile
- name: Build and push tag
if: github.event_name == 'release'
uses: docker/build-push-action@v5
with:
push: true
platforms: linux/amd64,linux/arm64
tags: |
tiangolo/latest-changes:${{ github.event.release.tag_name }}
ghcr.io/tiangolo/latest-changes:${{ github.event.release.tag_name }}
file: base.dockerfile