deploy #29
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: deploy | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| new-tag: | |
| description: 'new image tag to deploy' | |
| required: true | |
| type: string | |
| service-name: | |
| description: 'name of the service to update' | |
| required: true | |
| type: choice | |
| options: | |
| - org | |
| - fin | |
| - finNarrator | |
| - frontend | |
| - zugferd | |
| - keycloak | |
| - azDocumentAi | |
| environment: | |
| description: 'name of the affected environment' | |
| required: true | |
| type: choice | |
| options: | |
| - dev | |
| - demo | |
| - prod | |
| workflow_call: | |
| inputs: | |
| new-tag: | |
| description: 'new image tag to deploy' | |
| required: true | |
| type: string | |
| service-name: | |
| description: 'name of the service to update' | |
| required: true | |
| type: string | |
| environment: | |
| description: 'name of the affected environment' | |
| required: true | |
| type: string | |
| jobs: | |
| update-tag: | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Pull latest changes with rebase | |
| run: git pull --rebase origin main | |
| - name: Update app version | |
| uses: mikefarah/yq@v4.45.4 | |
| with: | |
| cmd: | | |
| yq e -i 'select(.spec.values.${{ inputs.service-name }}.image.tag = "${{ inputs.new-tag }}")' infrastructure/hopps/overlays/${{ inputs.environment }}/helm-release.yaml | |
| - uses: stefanzweifel/git-auto-commit-action@v5.2.0 | |
| with: | |
| commit_message: "π deploy ${{ inputs.environment }}/${{ inputs.service-name }} to ${{ inputs.new-tag }}" | |
| runs-on: ubuntu-latest |