Skip to content

CI for 5d76fec47dbfdff8d1c8def07f6fcef613c657d7 on 262/merge #1627

CI for 5d76fec47dbfdff8d1c8def07f6fcef613c657d7 on 262/merge

CI for 5d76fec47dbfdff8d1c8def07f6fcef613c657d7 on 262/merge #1627

Workflow file for this run

name: ci
run-name: CI for ${{ github.sha }} on ${{ github.ref_name }}
on:
workflow_dispatch:
push:
branches:
- "main"
- "release-**"
tags:
- "v**"
pull_request:
branches:
- "*"
jobs:
unit-test:
uses: ./.github/workflows/unittest.yaml
build:
uses: ./.github/workflows/build.yaml
publish:
if: ${{ (github.ref == 'refs/heads/main') || (github.ref_type == 'tag') }}
needs: [ build, unit-test ]
uses: ./.github/workflows/publish.yaml
with:
rock: ${{ needs.build.outputs.rock }}
scan:
if: ${{ (github.ref == 'refs/heads/main') || (github.ref_type == 'tag') }}
needs: publish
uses: ./.github/workflows/scan.yaml
with:
image: ${{ needs.publish.outputs.image }}