Skip to content

Commit

Permalink
GHA: Limit artifact upload to .ex[45] files only
Browse files Browse the repository at this point in the history
  • Loading branch information
kenorb committed Aug 26, 2023
1 parent de23bb7 commit d0e5750
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/backtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: EA
path: '*.ex?'
path: '*.ex[45]'
Compile-Indicators:
defaults:
run:
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: Indicators
path: '**/*.ex?'
path: '**/*.ex[45]'
Test:
needs: [Compile-EA, Compile-Indicators]
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: EA
path: '*.ex?'
path: '*.ex[45]'
Compile-Indicators:
defaults:
run:
Expand Down Expand Up @@ -101,4 +101,4 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: Indicators
path: '**/*.ex?'
path: '**/*.ex[45]'

0 comments on commit d0e5750

Please sign in to comment.