Skip to content

feat!: HELM deployment support. #163

feat!: HELM deployment support.

feat!: HELM deployment support. #163

Workflow file for this run

name: PR
on:
pull_request:
branches: [main]
workflow_dispatch:
concurrency:
# PR open and close use the same group, allowing only one at a time
group: pr-${{ github.workflow }}-${{ github.event.number }}
cancel-in-progress: true
jobs:
# https://github.com/bcgov-nr/action-builder-ghcr
builds:
name: Builds
if: "!github.event.pull_request.head.repo.fork"
permissions:
packages: write
runs-on: ubuntu-22.04
strategy:
matrix:
package: [ backend-go, backend-java, backend-py, migrations-go, migrations-py]
include:
- package: backend-go
triggers: ('backend-go/')
- package: backend-java
triggers: ('backend-java/')
- package: backend-py
triggers: ('backend-py/')
- package: migrations-py
triggers: ('backend-py/db')
build_context: ./backend-py/db
- package: migrations-go
triggers: ('backend-go/db')
build_context: ./backend-go/db
steps:
- uses: bcgov-nr/[email protected]
with:
build_context: ${{ matrix.build_context }}
keep_versions: 10
package: ${{ matrix.package }}
tag: ${{ github.event.number }}
triggers: ${{ matrix.triggers }}
tag_fallback: test
deploys:
name: Deploys
needs: [builds]
uses: ./.github/workflows/.deploy.yml

Check failure on line 52 in .github/workflows/pr-open.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pr-open.yml

Invalid workflow file

error parsing called workflow ".github/workflows/pr-open.yml" -> "./.github/workflows/.deploy.yml" --> "./.github/workflows/.tests.yml" : failed to fetch workflow: workflow was not found.
secrets: inherit
with:
build_outputs: ${{ needs.builds.outputs.digest }}
tag: ${{ github.event.number }}
release: ${{ github.event.number }}
validate:
name: Validate
needs: [deploys]
if: always() && (!cancelled()) && (!failure())
uses: bcgov/quickstart-openshift-helpers/.github/workflows/[email protected]
with:
markdown_links: |
- [Java](https://${{ github.event.repository.name }}-${{ github.event.number }}-backendJava.apps.silver.devops.gov.bc.ca)
- [Py](https://${{ github.event.repository.name }}-${{ github.event.number }}-backendPy.apps.silver.devops.gov.bc.ca)
- [Go](https://${{ github.event.repository.name }}-${{ github.event.number }}-backendGo.apps.silver.devops.gov.bc.ca)