Skip to content

fix: Completion message shows as human-readable string (#53) #175

fix: Completion message shows as human-readable string (#53)

fix: Completion message shows as human-readable string (#53) #175

Workflow file for this run

name: Docker Build
on:
pull_request:
push:
branches:
- "main"
tags:
- "*"
jobs:
docker-build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up python environment
uses: actions/setup-python@v4
with:
python-version: '3.9'
cache: 'pip'
- name: Install poetry
run: pip install poetry poetry-dynamic-versioning
- name: Apply dynamic version
run: |
poetry dynamic-versioning
cat podcast_archiver/__init__.py
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: "ghcr.io/${{ github.repository }}"
tags: |
type=ref,event=pr
type=semver,pattern=v{{major}}
type=semver,pattern=v{{version}}
type=raw,value=edge,enable=${{ github.ref == format('refs/heads/{0}', 'main') }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Github Container Registry
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v4
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64,linux/arm64/v8,linux/arm/v7
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}