summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRudolf Horvath <rudolf.official@gmail.com>2025-12-25 19:17:20 +0100
committerRudolf Horvath <rudolf.official@gmail.com>2025-12-25 19:17:20 +0100
commit61afe70047f142a2b5a2a69e79b52cedb378bdd5 (patch)
tree055f56d2aa320fb3fe89fc729b651f4543484a9b
parent0afff841bc79c688efe7aabaa1bcd2af8b097dfb (diff)
Add smoke test before docker release
-rw-r--r--.github/workflows/release.yaml7
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml
index 7aba217..6193845 100644
--- a/.github/workflows/release.yaml
+++ b/.github/workflows/release.yaml
@@ -21,6 +21,13 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
+ - name: Smoke test - verify binary runs
+ run: |
+ echo "Testing --help flag..."
+ docker run --rm antonmedv/gitmal:test --help
+
+ echo "Smoke test passed!"
+
- name: Build and push
uses: docker/build-push-action@v5
with: