Skip to content

Commit

Permalink
Add act support to pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
sin-diesel committed Nov 23, 2024
1 parent 76f3479 commit cf74722
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit cf74722

Please sign in to comment.