Skip to content

Commit

Permalink
GHA: Compile: Adds prefix to artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
kenorb committed Aug 20, 2024
1 parent dd996d3 commit 187a490
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: platform-indicators-ex${{ matrix.version }}
name: ${{ env.ARTIFACT_PREFIX }}-indicators-ex${{ matrix.version }}
path: MQL?/**/*.[me][qx][45h]
- if: ${{ failure() }}
uses: mxschmitt/action-tmate@v3
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
- uses: actions/download-artifact@v4
with:
merge-multiple: true
pattern: platform-indicators-ex?
pattern: ${{ env.ARTIFACT_PREFIX }}-indicators-ex?
- name: List all source code files
run: '(Get-ChildItem -Recurse -Path . -Include *.mq[45]).fullname'
- name: List compiled files
Expand Down Expand Up @@ -164,7 +164,8 @@ jobs:
- name: Upload indicator artifacts
uses: actions/upload-artifact@v4
with:
name: indicators-common-ex${{ matrix.version }}
# yamllint disable-line rule:line-length
name: ${{ env.ARTIFACT_PREFIX }}-indicators-common-ex${{ matrix.version }}
path: ${{ env.INDI_COMMON_WORKDIR }}/**/*.ex[45]
timeout-minutes: 30

Expand Down

0 comments on commit 187a490

Please sign in to comment.