27333 exclude businesses altered from BC to BEN then BEN to BC before… #2
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: SFTP NUANS Report Job CD | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "jobs/sftp-nuans-report/**" | |
| workflow_dispatch: | |
| inputs: | |
| environment: | |
| description: "Environment (dev/test/prod)" | |
| required: true | |
| default: "dev" | |
| defaults: | |
| run: | |
| shell: bash | |
| working-directory: ./jobs/sftp-nuans-report | |
| env: | |
| APP_NAME: "sftp-nuans-report" | |
| TAG_NAME: "dev" | |
| jobs: | |
| sftp-nuans-report-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: "*SFTP NUANS Report Job Built and Deployed to ${{env.TAG_NAME}}*" | |
| channel: "#registries-bot" | |
| url: ${{ secrets.ROCKETCHAT_WEBHOOK }} | |
| commit: true | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| sftp-nuans-report-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: "*SFTP NUANS Report Job Built and Deployed to ${{env.TAG_NAME}}*" | |
| channel: "#registries-bot" | |
| url: ${{ secrets.ROCKETCHAT_WEBHOOK }} | |
| commit: true | |
| token: ${{ secrets.GITHUB_TOKEN }} |