feat: add github release workflow #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Compose smoke | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: compose-smoke-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| compose-smoke: | |
| name: Docker Compose smoke | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v5 | |
| - name: Run Docker Compose smoke verifier | |
| shell: bash | |
| run: bash scripts/verify-compose-e2e.sh |