Skip to content

Chore tagging release images #5

Chore tagging release images

Chore tagging release images #5

Workflow file for this run

name: build-scan
on:
push:
branches:
- develop
pull_request:
branches:
- "develop"
permissions:
contents: read
packages: write
security-events: write
jobs:
matrix:
runs-on: ubuntu-latest
outputs:
node_types: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v2
- id: set-matrix
run: |
echo "matrix=${{vars.NODE_TYPES}}" >> $GITHUB_OUTPUT
build:
needs: matrix
strategy:
matrix:
node: ${{ fromJson(needs.matrix.outputs.node_types) }}
uses: ./.github/workflows/node-build.yml
with:
REGISTRY: ${{ vars.REGISTRY }}
NODE_TYPE: ${{ matrix.node }}
manifest:
needs: [matrix, build]
strategy:
matrix:
node: ${{ fromJson(needs.matrix.outputs.node_types) }}
uses: ./.github/workflows/node-manifest.yml
with:
REGISTRY: ${{ vars.REGISTRY }}
NODE_TYPE: ${{ matrix.node }}