bug fix, province drop down doesn't work for work experience reference #1807
Workflow file for this run
This file contains 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: Registry Portal Build | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
- "release/**" | |
paths: | |
- src/** | |
- "!src/ECER.Clients.Api/**" | |
- "!src/api.Dockerfile" | |
- .github/workflows/registry-portal-build.yml | |
- .github/workflows/build-template.yml | |
pull_request: | |
paths: | |
- src/** | |
- "!src/ECER.Clients.Api/**" | |
- "!src/api.Dockerfile" | |
- .github/workflows/registry-portal-build.yml | |
- .github/workflows/build-template.yml | |
jobs: | |
build: | |
permissions: | |
contents: read | |
packages: write | |
id-token: write | |
security-events: write | |
uses: ./.github/workflows/build-template.yml | |
with: | |
IMAGE_CONTEXT: src | |
IMAGE_FILE: src/registry-portal.Dockerfile | |
IMAGE_NAME: registry-portal | |
REGISTRY: ${{ vars.DOCKER_REGISTRY }} | |
secrets: | |
REGISTRY_USER: ${{ secrets.DOCKER_USERNAME }} | |
REGISTRY_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} |