Skip to content

gomod(deps): bump github.com/onsi/gomega from 1.35.0 to 1.35.1 (#82) #58

gomod(deps): bump github.com/onsi/gomega from 1.35.0 to 1.35.1 (#82)

gomod(deps): bump github.com/onsi/gomega from 1.35.0 to 1.35.1 (#82) #58

Workflow file for this run

name: Docker build & push
on:
push:
branches:
- "main"
tags:
- "v*.*.*"
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
werd/gofihttpbin
tags: |
type=ref,event=branch
type=semver,pattern={{version}}
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64,linux/arm64/v8
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}