chore: remove temporary diagnostic workflow
All checks were successful
Deploy / deploy (push) Successful in 1m39s

This commit is contained in:
2026-03-10 22:50:17 +01:00
parent 4001f427ad
commit 8a27d14d25

View File

@@ -1,16 +0,0 @@
name: read-impulsa-compose
on:
workflow_dispatch:
jobs:
find:
runs-on: self-hosted
steps:
- name: Read impulsa production compose and find landing Dockerfile
run: |
echo "=== /opt/impulsa/environments/production/docker-compose.yml ==="
docker run --rm -v /opt/impulsa:/impulsa alpine cat /impulsa/environments/production/docker-compose.yml
echo "=== /opt/impulsa directory tree (depth 3) ==="
docker run --rm -v /opt/impulsa:/impulsa alpine find /impulsa -maxdepth 4 -name "*.yml" -o -name "*.yaml" -o -name "Dockerfile*" 2>/dev/null
echo "=== Container start command ==="
docker inspect impulsa_landing --format '{{.Name}} {{.Config.Cmd}} {{.HostConfig.Binds}}'