Manual Production NEW #7
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: Manual Production NEW | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: 'Version (format: x.xxx.x, ie: 1.221.1)' | |
required: true | |
jobs: | |
deploy_services: | |
runs-on: ubuntu-latest | |
name: Deploy services | |
strategy: | |
matrix: | |
services: | |
[ | |
'organisation-elasticsearch', | |
'organisation-ui', | |
'organisation-api', | |
] | |
steps: | |
- name: CD | |
id: awscurl-polling-action | |
env: | |
BUILD_URL: ${{ vars.VBR_AWS_BUILD_API_DEVOPS }}/${{matrix.services}} | |
STATUS_URL: ${{ vars.VBR_AWS_BUILD_STATUS_API_DEVOPS }}/${{matrix.services}} | |
uses: informatievlaanderen/awscurl-polling-action/polling-action@main | |
with: | |
environment: prd | |
version: ${{ github.event.inputs.version }} | |
status-url: $STATUS_URL | |
deploy-url: $BUILD_URL | |
access-key: ${{ secrets.VBR_AWS_ACCESS_KEY_ID_DEVOPS }} | |
secret-key: ${{ secrets.VBR_AWS_SECRET_ACCESS_KEY_DEVOPS }} | |
deploy-target: 'agb_ecs_service' | |
interval: 2 | |
domain: 'basisregisters' | |
project: 'basisregisters' | |
- name: Output CD services | |
shell: bash | |
run: | | |
echo build-uuid: ${{ steps.awscurl-polling-action.outputs.build-uuid }} | |
echo Status: ${{ steps.awscurl-polling-action.outputs.status }} | |
echo ${{ steps.awscurl-polling-action.outputs.final-message }} | |
deploy_tasks: | |
if: github.repository_owner == 'Informatievlaanderen' | |
name: Deploy tasks | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
services: [ | |
'organisation-delegations', | |
'organisation-kbomutations', | |
'organisation-reporting', | |
'organisation-vlaanderenbe', | |
'organisation-zorgengezondheid', | |
] | |
steps: | |
- name: CD services | |
id: awscurl-polling-action | |
env: | |
BUILD_URL: ${{ vars.VBR_AWS_BUILD_API_DEVOPS }}/${{matrix.services}} | |
STATUS_URL: ${{ vars.VBR_AWS_BUILD_STATUS_API_DEVOPS }}/${{matrix.services}} | |
uses: informatievlaanderen/awscurl-polling-action/polling-action@main | |
with: | |
environment: prd | |
version: ${{ github.event.inputs.version }} | |
status-url: $STATUS_URL | |
deploy-url: $BUILD_URL | |
access-key: ${{ secrets.VBR_AWS_ACCESS_KEY_ID_DEVOPS }} | |
secret-key: ${{ secrets.VBR_AWS_SECRET_ACCESS_KEY_DEVOPS }} | |
interval: 2 | |
deploy-target: 'ecs_scheduled_task' | |
domain: 'basisregisters' | |
project: 'basisregisters' | |
- name: Output CD tasks | |
shell: bash | |
run: | | |
echo build-uuid: ${{ steps.awscurl-polling-action.outputs.build-uuid }} | |
echo Status: ${{ steps.awscurl-polling-action.outputs.status }} | |
echo ${{ steps.awscurl-polling-action.outputs.final-message }} |