Skip to content

1.14.2

1.14.2 #163

Workflow file for this run

name: Docker
on:
push:
branches:
- develop
release:
types: [published]
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
with:
submodules: ${{ ! (github.event_name == 'release' && github.event.action == 'published') }}
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: ghcr.io/pnx-si/taxhub
tags: |
type=ref,event=branch
type=ref,event=tag
-
name: Login to GHCR
uses: docker/login-action@v2
if: github.event_name != 'pull_request'
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and export
uses: docker/build-push-action@v3
with:
context: .
target: prod
build-args:
DEPS=${{ (github.event_name == 'release' && github.event.action == 'published') && 'pypi' || 'build' }}
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}