diff --git a/.github/workflows/merge-hotfix.yml b/.github/workflows/merge-hotfix.yml index 9b0370fd4..5a532bc35 100644 --- a/.github/workflows/merge-hotfix.yml +++ b/.github/workflows/merge-hotfix.yml @@ -43,3 +43,21 @@ jobs: oc_token: ${{ secrets.OC_TOKEN }} with: environment: hotfix + + promote: + name: Promote Images + needs: [deploy-hotfix, vars] + runs-on: ubuntu-22.04 + permissions: + packages: write + strategy: + matrix: + package: [migrations, backend, frontend, webeoc] + timeout-minutes: 1 + steps: + - uses: shrink/actions-docker-registry-tag@v4 + with: + registry: ghcr.io + repository: ${{ github.repository }}/${{ matrix.package }} + target: ${{ needs.vars.outputs.pr }} + tags: hotfix diff --git a/backend/src/main.ts b/backend/src/main.ts index 1a4fd1193..5c15b8492 100644 --- a/backend/src/main.ts +++ b/backend/src/main.ts @@ -18,10 +18,10 @@ async function bootstrap() { process.env.TZ = "UTC"; const config = new DocumentBuilder() - .setTitle("Compliance and Enforcement - Complaint Management API") - .setDescription("The Complicance and Enforcement - Complaint Management API") - .setVersion("1.0.0") - .addTag("Compliance and Enforcement - Complaint Management") + .setTitle("NATComplaints API") + .setDescription("NATComplaints - API") + .setVersion("1.0") + .addTag("NATComplaints - Complaint Management") .build(); const document = SwaggerModule.createDocument(app, config);