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