Skip to content

feat(ci): deployer workflow #30

feat(ci): deployer workflow

feat(ci): deployer workflow #30

Workflow file for this run

name: PR
on:
pull_request:
concurrency:
# Cancel in progress for PR open and close
group: ${{ github.workflow }}-${{ github.event.number }}
cancel-in-progress: true
jobs:
# pr-close:
# name: Close
# uses: ./.github/workflows/.pr-close.yml
# pr-validate:
# name: Validate
# needs: pr-close
# uses: ./.github/workflows/.pr-validate.yml
# with:
# markdown_links: |
# - [Frontend](https://${{ github.event.repository.name }}-${{ github.event.number }}-frontend.apps.silver.devops.gov.bc.ca)
# - [Backend](https://${{ github.event.repository.name }}-${{ github.event.number }}-frontend.apps.silver.devops.gov.bc.ca/api)
# https://github.com/bcgov-nr/action-builder-ghcr
builds:
name: Builds
runs-on: ubuntu-22.04
strategy:
matrix:
package: [migrations, backend, frontend]
timeout-minutes: 10
steps:
- uses: bcgov-nr/[email protected]
id: builds
with:
keep_versions: 50
package: ${{ matrix.package }}
tag: ${{ github.event.number }}
tag_fallback: latest
triggers: ('${{ matrix.package }}/')
deploys:
name: Deploys
needs: [builds]
runs-on: ubuntu-latest
steps:
- name: Deploys
uses: ./.github/workflows/.deployer.yml
secrets:

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

View workflow run for this annotation

GitHub Actions / PR

Invalid workflow file

The workflow is not valid. .github/workflows/pr-open.yml (Line: 50, Col: 9): Unexpected value 'secrets'
OC_NAMESPACE: ${{ secrets.OC_NAMESPACE }}
OC_TOKEN: ${{ secrets.OC_TOKEN }}
with:
params: |
--set global.autoscaling=false
release: ${{ github.event.number }}