chore(ci): Update resourcing and add network policies for successful deploy. #426
Workflow file for this run
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: PR | |
on: | |
pull_request: | |
concurrency: | |
# Cancel in progress for PR open and close | |
group: ${{ github.event.number }} | |
cancel-in-progress: true | |
jobs: | |
# https://github.com/bcgov-nr/action-builder-ghcr | |
builds: | |
name: Builds | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
package: [database, backend, frontend] | |
timeout-minutes: 20 | |
steps: | |
- uses: bcgov-nr/[email protected] | |
with: | |
keep_versions: 50 | |
package: ${{ matrix.package }} | |
tag: ${{ github.event.number }} | |
tag_fallback: latest | |
triggers: ('${{ matrix.package }}/') | |
deploy: | |
name: Deploy | |
needs: [builds] | |
secrets: inherit | |
uses: ./.github/workflows/.deploy.yml | |
# tests: | |
# name: Tests | |
# if: needs.deploys.outputs.triggered == 'true' | |
# needs: [deploys] | |
# uses: ./.github/workflows/.tests.yml | |
# with: | |
# target: ${{ github.event.number }} | |
# results: | |
# name: PR Results | |
# # needs: [builds, deploys, tests] | |
# if: always() && (!failure()) && (!cancelled()) | |
# runs-on: ubuntu-latest | |
# steps: | |
# - run: echo "Success!" | |
# dump: | |
# name: Dump Context | |
# runs-on: ubuntu-latest | |
# env: | |
# CONTEXT: ${{ toJson(github) }} | |
# steps: | |
# - run: echo "${{ env.CONTEXT }}" |