Skip to content

build(deps): bump docker/metadata-action from 5.0.0 to 5.4.0 #111

build(deps): bump docker/metadata-action from 5.0.0 to 5.4.0

build(deps): bump docker/metadata-action from 5.0.0 to 5.4.0 #111

Workflow file for this run

---
name: CI
on:
push:
branches-ignore:
- stable
- mainline
- rb/*
env:
IMAGE_NAME: nginx-brotli
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Docker Buildx
id: buildx
uses: docker/[email protected]
- name: Build amd64 image
uses: docker/[email protected]
with:
builder: ${{ steps.buildx.outputs.name }}
context: .
platforms: linux/amd64
push: false
tags: ${{ env.IMAGE_NAME }}
load: true
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache
- name: Test
run: |
docker run --rm -v $(pwd)/tests.sh:/tests.sh --entrypoint sh nginx-brotli /tests.sh