Skip to content

Commit

Permalink
Merge pull request #298 from spacemeshos/fix-warnings-in-gh-workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
poszu authored Jul 9, 2024
2 parents a8ac7cc + 914a290 commit 126bc55
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ jobs:
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: libpost-${{ matrix.artifact-name }}${{ steps.version.output.suffix }}
name: libpost-${{ matrix.artifact-name }}${{ steps.version.outputs.suffix }}
path: |
ffi/post.h
target/release-clib/${{ matrix.dylib }}
Expand All @@ -212,7 +212,7 @@ jobs:
- name: Archive profiler artifacts
uses: actions/upload-artifact@v3
with:
name: profiler-${{ matrix.artifact-name }}${{ steps.version.output.suffix }}
name: profiler-${{ matrix.artifact-name }}${{ steps.version.outputs.suffix }}
path: |
target/release/profiler${{ matrix.os == 'windows-2019' && '.exe' || '' }}
if-no-files-found: error
Expand All @@ -227,7 +227,7 @@ jobs:
- name: Archive service artifacts
uses: actions/upload-artifact@v3
with:
name: post-service-${{ matrix.artifact-name }}${{ steps.version.output.suffix }}
name: post-service-${{ matrix.artifact-name }}${{ steps.version.outputs.suffix }}
path: |
target/release/post-service${{ matrix.os == 'windows-2019' && '.exe' || '' }}
if-no-files-found: error
Expand Down

0 comments on commit 126bc55

Please sign in to comment.