Skip to content

chore(deps): bump werkzeug from 2.3.6 to 2.3.8 in /python/frontend (#… #84

chore(deps): bump werkzeug from 2.3.6 to 2.3.8 in /python/frontend (#…

chore(deps): bump werkzeug from 2.3.6 to 2.3.8 in /python/frontend (#… #84

Workflow file for this run

name: Publish to GHCR
on:
workflow_dispatch:
push:
branches:
- main
jobs:
build-and-publish-docker-image:
runs-on: ubuntu-22.04
permissions:
contents: read
packages: write
strategy:
matrix:
service: [frontend, message, year, name]
steps:
- uses: actions/checkout@v1
- name: Log in to the Container registry
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/[email protected]
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/[email protected]
with:
images: |
ghcr.io/${{ github.repository }}/egs-${{ matrix.service }}-go
- name: Build and push
uses: docker/[email protected]
with:
context: "{{ defaultContext }}:go-uninstrumented"
file: ${{ matrix.service }}-service/Dockerfile
tags: ghcr.io/${{ github.repository }}/egs-${{ matrix.service }}-go:dev
push: true
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64,linux/arm64