Skip to content

chore(ci): automatically determine release image tag #254

chore(ci): automatically determine release image tag

chore(ci): automatically determine release image tag #254

Workflow file for this run

name: Container
on:
push:
branches:
- main
pull_request:
permissions:
contents: read # for actions/checkout to fetch code
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test-container:
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Test container build
uses: flowexec/action@v1
with:
executable: 'build container'
timeout: '20m'
continue-on-error: true
flow-version: 'main'
id: container
- name: Check container build
run: |
echo "Container build completed with exit code: ${{ steps.container.outputs.exit-code }}"
if [ "${{ steps.container.outputs.exit-code }}" = "0" ]; then
echo "✅ Container build successful"
else
echo "⚠️ Container build failed (expected in CI without Docker setup)"
fi