Skip to content

build(deps): bump docker/build-push-action from 5 to 6 #8

build(deps): bump docker/build-push-action from 5 to 6

build(deps): bump docker/build-push-action from 5 to 6 #8

Workflow file for this run

name: Test
on:
pull_request: {}
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=ref,event=pr
- name: Build and push container image
uses: docker/build-push-action@v6
with:
push: false
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}