Skip to content

chore(deps): bump google.golang.org/protobuf from 1.30.0 to 1.33.0 in… #79

chore(deps): bump google.golang.org/protobuf from 1.30.0 to 1.33.0 in…

chore(deps): bump google.golang.org/protobuf from 1.30.0 to 1.33.0 in… #79

Workflow file for this run

name: Publish to GHCR
on:
workflow_dispatch:
push:
branches:
- main
jobs:
build-and-publish-docker-image:
machine:

Check failure on line 11 in .github/workflows/publish-ghcr.yml

View workflow run for this annotation

GitHub Actions / Publish to GHCR

Invalid workflow file

The workflow is not valid. .github/workflows/publish-ghcr.yml (Line: 11, Col: 5): Unexpected value 'machine' .github/workflows/publish-ghcr.yml (Line: 11, Col: 5): Required property is missing: runs-on
image: ubuntu-2204:2024.01.1
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