Skip to content

Added more information on debug messages generated by Pino #167

Added more information on debug messages generated by Pino

Added more information on debug messages generated by Pino #167

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ master ]
schedule:
- cron: 0 6 * * 1
pull_request:
workflow_dispatch:
jobs:
codeql:
uses: ./.github/workflows/codeql.yml
playwright:
uses: ./.github/workflows/playwright.yml
eslint:
uses: ./.github/workflows/eslint.yml
build-image:
if: ${{ github.event_name != 'schedule' }}}
runs-on: ubuntu-latest
needs: [ codeql, playwright, eslint ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
flavor: latest=true
images: ghcr.io/${{ github.repository }}
tags: |
type=sha
- name: Login to GitHub Container Registry
if: github.event_name == 'push' || ( github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == 'true' )
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build Docker Image and push
if: github.event_name == 'push' || ( github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == 'true' )
uses: docker/build-push-action@v5
with:
file: docker/Dockerfile.development
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
context: .