stoat basic functionality, most things just dont work with this api yet
All checks were successful
Build and Push Docker Image / build (push) Successful in 17s

This commit is contained in:
2026-04-02 21:00:19 -04:00
parent ae2046185c
commit 3b1b00928a
11 changed files with 268 additions and 1015 deletions

View File

@@ -2,7 +2,7 @@ name: Build and Push Docker Image
on:
push:
branches: [ main ]
branches: [ main, stoat ]
jobs:
build:
@@ -21,14 +21,14 @@ jobs:
- name: Build Docker Image
run: |
# Build the image with the commit hash tag
docker build -t git.cesium.one/kira/cockinator .
docker build -t git.cesium.one/kira/cockinator:stoat .
- name: Push Docker Images
env:
BRANCH_NAME: ${{ github.ref_name }}
SHORT_HASH: ${{ github.sha }}
run: |
docker push git.cesium.one/kira/cockinator
docker push git.cesium.one/kira/cockinator:stoat
- name: Log out from registry
if: always()