General: Add localized gender suffixes to job titles
#10849
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: ls1intum/doc-apply | |
| docker-file: Dockerfile | |
| # Forward the branch (or tag) name into the build so gradle-git-properties records the | |
| # real ref instead of the literal "HEAD" left by GitHub's detached-HEAD checkout. | |
| build-args: | | |
| GIT_BRANCH=${{ github.head_ref || github.ref_name }} | |
| secrets: inherit |