This repository was archived by the owner on Dec 9, 2025. It is now read-only.
wip add complex types to config #464
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: Build and push all docker images | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| force_rebuild: | |
| description: 'Force rebuild of all images' | |
| default: false | |
| type: boolean | |
| push: | |
| branches: | |
| - '**' | |
| tags: | |
| - 'v*' | |
| env: | |
| REGISTRY: ghcr.io | |
| jobs: | |
| build-and-push-all-images: | |
| name: Build and push all docker images | |
| strategy: | |
| matrix: | |
| image_name: [everest-ci-env, everest-clang-format] | |
| uses: everest/everest-ci/.github/workflows/deploy-single-docker-image.yml@v1.1.0 | |
| with: | |
| force_rebuild: ${{ inputs.force_rebuild || (github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/' )) || false }} | |
| image_name: ${{ matrix.image_name }} | |
| docker_directory: docker/ | |
| docker_registry: ghcr.io | |
| github_ref_before: ${{ github.event.before }} | |
| github_ref_after: ${{ github.event.after }} | |
| secrets: | |
| SA_GITHUB_PAT: ${{ secrets.SA_GITHUB_PAT }} | |
| SA_GITHUB_USERNAME: ${{ secrets.SA_GITHUB_USERNAME }} |