From cf7472203fe2f890046701f558051980b483bd3a Mon Sep 17 00:00:00 2001 From: Stanislav Sidelnikov Date: Sat, 23 Nov 2024 17:21:41 +0300 Subject: [PATCH] Add act support to pipeline --- .github/workflows/workflow.yaml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/workflow.yaml b/.github/workflows/workflow.yaml index 4a0f1b0..91cb21b 100644 --- a/.github/workflows/workflow.yaml +++ b/.github/workflows/workflow.yaml @@ -17,7 +17,8 @@ permissions: contents: read jobs: - build_act: + build: + if: ${{ !github.event.act }} runs-on: ubuntu-24.04 container: image: docker.io/sindiesel/cpp_ubuntu:22.0.20 @@ -27,3 +28,10 @@ jobs: - uses: actions/checkout@v4 - name: composite uses: ./.github/actions/build-composite + build_act: + if ${{ github.event.act }} + runs-on: ubuntu-24.04 + steps: + - uses: actions/checkout@v4 + - name: composite + uses: ./.github/actions/build-composite