2026-04-10-3 #18
Workflow file for this run
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: docker-hub-publish | |
| on: | |
| release: | |
| types: [published] | |
| jobs: | |
| build-ant-test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.14"] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip pipx | |
| pipx install uv | |
| make install | |
| - name: Build Docker images | |
| run: make docker-build-all | |
| - name: Run tests (using locally built Docker images) | |
| run: make test-docker-compose | |
| - name: Docker Hub push | |
| run: ./container/docker_push.sh | |
| shell: bash | |
| env: | |
| DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
| DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} |