Skip to content

Commit

Permalink
ci: fix build file pattern (#81)
Browse files Browse the repository at this point in the history
* ci: fix build file pattern

* fix all patterns
  • Loading branch information
finger563 authored Jul 18, 2024
1 parent f1f753c commit e5b8dab
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/atopile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ on:
pull_request:
branches: [main]
paths:
- 'ecad/*'
- 'ecad/**'
- '.github/workflows/atopile.yml'
push:
branches: [main]
paths:
- 'ecad/*'
- 'ecad/**'
- '.github/workflows/atopile.yml'
release:
types: [published]
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,18 @@ on:
pull_request:
branches: [main]
paths:
- 'components/*'
- 'main/*'
- 'components/**'
- 'main/**'
- 'CMakeLists.txt'
- 'sdkconfig.defaults'
- 'partitions.csv'
- '.github/workflows/build.yml'
push:
branches: [main]
paths:
- 'components/*'
- 'main/*'
- 'components/**'
- 'main/**'
- 'CMakeLists.txt'
- 'sdkconfig.defaults'
- 'partitions.csv'
- '.github/workflows/build.yml'
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/static_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,8 @@ on:
branches:
- "*"
paths:
- 'components/*'
- 'main/*'
- 'sdkconfig.defaults'
- 'partitions.csv'
- 'components/**'
- 'main/**'
- '.github/workflows/static_analysis.yml'

jobs:
Expand Down

0 comments on commit e5b8dab

Please sign in to comment.