Skip to content

Bump YamlDotNet from 16.2.0 to 16.2.1 #2312

Bump YamlDotNet from 16.2.0 to 16.2.1

Bump YamlDotNet from 16.2.0 to 16.2.1 #2312

Workflow file for this run

#### Publish tags to docker hub
name: 👀 Test docker
on:
pull_request:
branches:
- main
- dev
jobs:
test:
name: 👀 Test image build ${{ matrix.dockerfile }}
runs-on: ubuntu-latest
strategy:
matrix:
dockerfile:
- Dockerfile
- Dockerfile.AddOn
steps:
- name: 📤 Checkout the repository
uses: actions/checkout@main
- name: 📎 Set up QEMU
uses: docker/setup-qemu-action@v3
- name: 🔧 Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
- name: 🧰 Available platforms
run: echo ${{ steps.buildx.outputs.platforms }}
- name: 🛠️ Run Buildx
run: |
docker buildx build \
--platform linux/arm,linux/arm64,linux/amd64 \
--output "type=image,push=false" \
--no-cache \
--file ./${{ matrix.dockerfile }} . \
--tag netdaemon/netdaemon5:dev