Skip to content

update s3 and variable passthrough in bemgr #102

update s3 and variable passthrough in bemgr

update s3 and variable passthrough in bemgr #102

Workflow file for this run

name: Organise Jobs
on:
push:
branches:
- main
jobs:
changes:
name: Detect module changes
runs-on: ubuntu-latest
outputs:
changed_dirs: ${{steps.changes.outputs.changed_dirs}}
steps:
- name: Checkout code
uses: actions/checkout@v4
- id: changes
uses: ./.github/actions/changes
organise-jobs:
name: Distribute on change
needs: changes
if: ${{ needs.changes.outputs.changed_dirs != '[]' }}
strategy:
matrix:
module: ${{ fromJSON(needs.changes.outputs.changed_dirs) }}
uses: ./.github/workflows/distribute.yaml
with:
module: ${{matrix.module}}
secrets: inherit