Bump Microsoft.AspNetCore.OpenApi from 9.0.0 to 9.0.1 #272
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: Build, Create & Push Docker images | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [opened, synchronize] | |
workflow_dispatch: | |
env: | |
ContainerRegistryPAT: ${{ secrets.PERSONAL_ACCESS_TOKEN || 'dependabot_placeholder_pat' }} | |
ContainerRegistryUsername: ${{ secrets.USERNAME || 'dependabot_placeholder_username' }} | |
GitAuthorUsername: 'Vasil Kotsev' | |
GitAuthorEmail: '[email protected]' | |
jobs: | |
publish-images: | |
name: Publish API images to the container registry | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup .NET SDK | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 9.x.x | |
- name: Build & Push images to the container registry | |
run: ./build.sh PushImagesToContainerRegistry |