Skip to content

Commit

Permalink
GHA: Compile: Fixes uploading artifacts after compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
kenorb committed Apr 24, 2024
1 parent d8c2aef commit b9aed53
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,16 +65,11 @@ jobs:
- name: Print compiled files
run: '(Get-ChildItem -Recurse -Path . -Include *.ex[45]).fullname'
shell: powershell
- name: Upload artifacts (MQL4)
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: files-ex4
path: '**/*.ex4'
- name: Upload artifacts (MQL5)
uses: actions/upload-artifact@v2
with:
name: files-ex5
path: '**/*.ex5'
name: files-ex${{ matrix.version }}
path: '**/*.ex[45]'

strategy:
matrix:
Expand Down

0 comments on commit b9aed53

Please sign in to comment.