Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,13 @@ jobs:
- name: Set the upload params
id: set-upload-params
env:
PLATFORM_ARTIFACT_MARKER: ${{ matrix.plan.platform.artifactMarker }}
ARTIFACT_PLATFORM_MARKER: ${{ matrix.plan.platform.artifactMarker }}
run: |
EXECUTABLE_PATH="target/release/humanode-peer"
ARTIFACT_NAME="humanode-peer-$(rustc -vV | sed -n 's|host: ||p')"

if [[ "$PLATFORM_ARTIFACT_MARKER" != "" ]]; then
ARTIFACT_NAME="${ARTIFACT_NAME}-${PLATFORM_ARTIFACT_MARKER}"
if [[ "$ARTIFACT_PLATFORM_MARKER" != "" ]]; then
ARTIFACT_NAME="${ARTIFACT_NAME}-${ARTIFACT_PLATFORM_MARKER}"
fi

if [[ "${PATHEXT:-""}" != "" ]]; then
Expand Down