Skip to content

Commit

Permalink
remvoe dir check for debug
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamDiakite committed Dec 4, 2023
1 parent 8ef4230 commit a01733b
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/build_client.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,14 @@
name: Trigger ouvroir's website build
on:
push:
workflow_dispatch:
jobs:
dispatch_event:
runs-on: ubuntu-latest
permissions: write-all
steps:
- name: Post dispatch
if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && (
contains(github.event.head_commit.modified, 'blog/') ||
contains(github.event.head_commit.modified, 'equipe/') ||
contains(github.event.head_commit.modified, 'cr/') ||
contains(github.event.head_commit.modified, 'evenements/') ||
contains(github.event.head_commit.modified, 'lab/') ||
contains(github.event.head_commit.modified, 'projets/')
)
if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch')
run: |
curl -X POST \
-H "Accept: application/vnd.github+json" \
Expand Down

0 comments on commit a01733b

Please sign in to comment.