Skip to content

CI for ff0ea8f8ec4922ab5c99fe680a32237c45466b1a on 283/merge #1643

CI for ff0ea8f8ec4922ab5c99fe680a32237c45466b1a on 283/merge

CI for ff0ea8f8ec4922ab5c99fe680a32237c45466b1a on 283/merge #1643

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 }}