2024-11-12 05:31:55 +01:00
|
|
|
name: Docker Image CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2024-11-14 03:40:57 +01:00
|
|
|
branches: ["main"]
|
2024-11-12 05:31:55 +01:00
|
|
|
pull_request:
|
2024-11-14 03:40:57 +01:00
|
|
|
branches: ["main"]
|
2024-11-12 05:31:55 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2024-11-14 03:40:57 +01:00
|
|
|
- uses: actions/checkout@v4
|
2024-11-16 00:50:38 +01:00
|
|
|
- name: Build the Docker image
|
|
|
|
run: python3 scripts/start.py
|