Skip to content

chore: bump @semantic-release/github from 8.0.7 to 10.3.5 #9

chore: bump @semantic-release/github from 8.0.7 to 10.3.5

chore: bump @semantic-release/github from 8.0.7 to 10.3.5 #9

Workflow file for this run

name: Dockerfile build test
on:
push:
branches: [main]
pull_request:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Check out repository
uses: actions/checkout@v4
# Build using your Makefile target (runs: docker build -t hello-universe-db .)
- name: Build Docker image
run: make build
# Quick sanity check that the image exists
- name: Verify image was built
run: docker image inspect hello-universe-db:latest > /dev/null