Add temp identifier to queue for pay remove MRAS_TOPIC (#3557) #8
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: Update Legal Filings Job CD | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "jobs/update-legal-filings/**" | |
| workflow_dispatch: | |
| inputs: | |
| environment: | |
| description: "Environment (dev/test/prod)" | |
| required: true | |
| default: "dev" | |
| defaults: | |
| run: | |
| shell: bash | |
| working-directory: ./jobs/update-legal-filings | |
| env: | |
| APP_NAME: "update-legal-filings" | |
| TAG_NAME: "dev" | |
| jobs: | |
| update-legal-filings-cd-by-push: | |
| runs-on: ubuntu-24.04 | |
| if: github.event_name == 'push' && github.repository == 'bcgov/lear' | |
| environment: | |
| name: "dev" | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install CLI tools from OpenShift | |
| uses: redhat-actions/openshift-tools-installer@v1 | |
| with: | |
| oc: "4" | |
| - name: Login Openshift | |
| shell: bash | |
| run: | | |
| oc login --server=${{secrets.OPENSHIFT4_LOGIN_REGISTRY}} --token=${{secrets.OPENSHIFT4_SA_TOKEN}} | |
| - name: CD Flow | |
| shell: bash | |
| env: | |
| OPS_REPOSITORY: ${{ secrets.OPS_REPOSITORY }} | |
| OPENSHIFT_DOCKER_REGISTRY: ${{ secrets.OPENSHIFT4_DOCKER_REGISTRY }} | |
| OPENSHIFT_SA_NAME: ${{ secrets.OPENSHIFT4_SA_NAME }} | |
| OPENSHIFT_SA_TOKEN: ${{ secrets.OPENSHIFT4_SA_TOKEN }} | |
| OPENSHIFT_REPOSITORY: ${{ secrets.OPENSHIFT4_REPOSITORY }} | |
| TAG_NAME: ${{ env.TAG_NAME }} | |
| run: | | |
| make cd | |
| - name: Rocket.Chat Notification | |
| uses: RocketChat/Rocket.Chat.GitHub.Action.Notification@master | |
| if: failure() | |
| with: | |
| type: ${{ job.status }} | |
| job_name: "*Update Legal Filings Job Built and Deployed to ${{env.TAG_NAME}}*" | |
| channel: "#registries-bot" | |
| url: ${{ secrets.ROCKETCHAT_WEBHOOK }} | |
| commit: true | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| update-legal-filings-cd-by-dispatch: | |
| runs-on: ubuntu-24.04 | |
| if: github.event_name == 'workflow_dispatch' && github.repository == 'bcgov/lear' | |
| environment: | |
| name: "${{ github.event.inputs.environment }}" | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set env by input | |
| run: | | |
| echo "TAG_NAME=${{ github.event.inputs.environment }}" >> $GITHUB_ENV | |
| - name: Install CLI tools from OpenShift | |
| uses: redhat-actions/openshift-tools-installer@v1 | |
| with: | |
| oc: "4" | |
| - name: Login Openshift | |
| shell: bash | |
| run: | | |
| oc login --server=${{secrets.OPENSHIFT4_LOGIN_REGISTRY}} --token=${{secrets.OPENSHIFT4_SA_TOKEN}} | |
| - name: CD Flow | |
| shell: bash | |
| env: | |
| OPS_REPOSITORY: ${{ secrets.OPS_REPOSITORY }} | |
| OPENSHIFT_DOCKER_REGISTRY: ${{ secrets.OPENSHIFT4_DOCKER_REGISTRY }} | |
| OPENSHIFT_SA_NAME: ${{ secrets.OPENSHIFT4_SA_NAME }} | |
| OPENSHIFT_SA_TOKEN: ${{ secrets.OPENSHIFT4_SA_TOKEN }} | |
| OPENSHIFT_REPOSITORY: ${{ secrets.OPENSHIFT4_REPOSITORY }} | |
| TAG_NAME: ${{ env.TAG_NAME }} | |
| run: | | |
| make cd | |
| - name: Rocket.Chat Notification | |
| uses: RocketChat/Rocket.Chat.GitHub.Action.Notification@master | |
| if: failure() | |
| with: | |
| type: ${{ job.status }} | |
| job_name: "*Update Legal Filings Job Built and Deployed to ${{env.TAG_NAME}}*" | |
| channel: "#registries-bot" | |
| url: ${{ secrets.ROCKETCHAT_WEBHOOK }} | |
| commit: true | |
| token: ${{ secrets.GITHUB_TOKEN }} |