Skip to content

missin "run" in workflow #5

missin "run" in workflow

missin "run" in workflow #5

Workflow file for this run

name: Docker Image CI
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build . --file Dockerfile --tag knxd:latest
- name: Inspect Docker image
run: docker image inspect knxd:latest
- name: Run knxd Container
run: |
pwd
docker container run knxd:latest
timeout-minutes: 1
continue-on-error: true