Skip to content

build(deps): bump fastify from 5.2.1 to 5.3.2 #79

build(deps): bump fastify from 5.2.1 to 5.3.2

build(deps): bump fastify from 5.2.1 to 5.3.2 #79

Workflow file for this run

name: Docker CI
on:
push:
pull_request:
env:
# Use docker.io for Docker Hub if empty
REGISTRY: ghcr.io
# github.repository as <account>/<repo>
IMAGE_NAME: ${{ github.repository }}
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Setup QEMU
uses: docker/setup-qemu-action@v3
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker Metadata
id: meta
uses: docker/metadata-action@v5
with:
images: |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
# Commit SHA Tag
# The Tags based on the branch or the PR
# The "test" Tag, indicating a non-production-ready image
tags: |
type=sha
type=ref,event=branch
type=ref,event=pr
test
- name: Build and Push
uses: docker/build-push-action@v6
with:
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}