FUND-1762 Log ApiVersion header (#94) #18
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: Publish Autorisaties | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - .github/workflows/cd-autorisaties.yml | |
| ## GENERATED PATH LIST, DO NOT MODIFY CONTENT MANUALLY ## | |
| ## > src/OneGround.ZGW.Autorisaties.WebApi/ZGW.Autorisaties.WebApi.csproj | |
| - 'src/OneGround.ZGW.Autorisaties.Common/**' | |
| - 'src/OneGround.ZGW.Autorisaties.Contracts/**' | |
| - 'src/OneGround.ZGW.Autorisaties.DataModel/**' | |
| - 'src/OneGround.ZGW.Autorisaties.Web/**' | |
| - 'src/OneGround.ZGW.Autorisaties.WebApi/**' | |
| - 'src/OneGround.ZGW.Catalogi.Contracts/**' | |
| - 'src/OneGround.ZGW.Catalogi.ServiceAgent/**' | |
| - 'src/OneGround.ZGW.Common.Abstractions/**' | |
| - 'src/OneGround.ZGW.Common.Contracts/**' | |
| - 'src/OneGround.ZGW.Common.DataModel/**' | |
| - 'src/OneGround.ZGW.Common.Messaging/**' | |
| - 'src/OneGround.ZGW.Common.ServiceAgent/**' | |
| - 'src/OneGround.ZGW.Common.Web/**' | |
| - 'src/OneGround.ZGW.Common/**' | |
| - 'src/OneGround.ZGW.DataAccess/**' | |
| - 'src/OneGround.ZGW.Notificaties.Contracts/**' | |
| - 'src/OneGround.ZGW.Notificaties.ServiceAgent/**' | |
| ## END OF GENERATED PATH LIST ## | |
| workflow_dispatch: | |
| jobs: | |
| build-and-publish-image: | |
| uses: ./.github/workflows/cd-build-and-publish-image.yml | |
| permissions: | |
| contents: write | |
| packages: write | |
| with: | |
| git_tag_name: 'autorisaties' | |
| major_version: 1 | |
| minor_version: 0 | |
| patch_version_starts_from: 100 | |
| services: | | |
| [ | |
| { | |
| "service_name": "autorisaties-api", | |
| "docker_file": "./src/OneGround.ZGW.Autorisaties.WebApi/Dockerfile", | |
| "context": "." | |
| } | |
| ] | |
| update-docker-hub-repository: | |
| uses: ./.github/workflows/cd-docker-hub-repository-update.yml | |
| with: | |
| repository_name: 'autorisaties-api' | |
| description: 'OneGround implementation of ZGW Autorisaties API (from Netherlands VNG standard)' | |
| readme_filepath: './src/OneGround.ZGW.Autorisaties.WebApi/README.md' | |
| secrets: | |
| DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | |
| DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} |