Skip to content

Commit

Permalink
CICD: Fix check modified file
Browse files Browse the repository at this point in the history
PATCH
  • Loading branch information
Saverio976 committed Sep 27, 2023
1 parent 0f1bc1c commit bf2ea14
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/compil.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
windows-compil:
runs-on: windows-latest
needs: [compil-check-job-run]
if: needs.paths-filter.outputs.combined || github.event_name == 'pull_request'
if: needs.compil-check-job-run.outputs.combined || github.event_name == 'pull_request'

steps:
- name: Checkout
Expand All @@ -51,7 +51,7 @@ jobs:
linux-compil:
runs-on: ubuntu-latest
needs: [compil-check-job-run]
if: needs.paths-filter.outputs.combined || github.event_name == 'pull_request'
if: needs.compil-check-job-run.outputs.combined || github.event_name == 'pull_request'

steps:
- name: Checkout
Expand All @@ -66,7 +66,7 @@ jobs:
macos-compil:
runs-on: macos-latest
needs: [compil-check-job-run]
if: needs.paths-filter.outputs.combined || github.event_name == 'pull_request'
if: needs.compil-check-job-run.outputs.combined || github.event_name == 'pull_request'

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mirror.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Publish

on: [push, pull_request]
on: [push]

env:
MIRROR_URL: [email protected]:EpitechPromo2026/B-CPP-500-TLS-5-1-rtype-xavier.mitault.git
Expand Down

0 comments on commit bf2ea14

Please sign in to comment.