General: Add margin bottom to left column of job detail page (#1773)
#7041
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 Docker Image | |
| # The name of this workflow (Build) should be in sync with the test-e2e.yml workflow's workflow_run listener. | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - 'README.md' | |
| - 'CODE_OF_CONDUCT.md' | |
| - 'CONTRIBUTING.md' | |
| - 'LICENSE' | |
| - 'SECURITY.md' | |
| - '../../docs-github/**' | |
| - '.github/**' | |
| - '!.github/workflows/build.yml' | |
| push: | |
| branches: | |
| - main | |
| tags: '[0-9]+.[0-9]+.[0-9]+' | |
| paths-ignore: | |
| - 'README.md' | |
| - 'CODE_OF_CONDUCT.md' | |
| - 'CONTRIBUTING.md' | |
| - 'LICENSE' | |
| - 'SECURITY.md' | |
| - '../../docs-github/**' | |
| - '.github/**' | |
| - '!.github/workflows/build.yml' | |
| release: | |
| types: | |
| - created | |
| jobs: | |
| build: | |
| uses: ls1intum/.github/.github/workflows/build-and-push-docker-image.yml@main | |
| with: | |
| image-name: ghcr.io/ls1intum/tum-apply | |
| docker-file: Dockerfile | |
| secrets: inherit |