Skip to content

Commit

Permalink
Try again
Browse files Browse the repository at this point in the history
  • Loading branch information
alexroan committed Jun 4, 2024
1 parent 135d0fa commit e43640c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,10 @@ jobs:
run: |
mkdir -p compressed
tar -czvf compressed/${{ env.BIN_RELEASE_VERSIONED }}.tar.gz ${{ env.BIN_RELEASE_VERSIONED }}
echo "COMPRESSED_BINARY=compressed/${{ env.BIN_RELEASE_VERSIONED }}.tar.gz" >> $GITHUB_ENV
if [[ "${{ matrix.runner }}" == "windows-latest" ]]; then
if [ "${{ matrix.runner }}" = "windows-latest" ]; then
echo "COMPRESSED_BINARY=compressed/${{ env.BIN_RELEASE_VERSIONED }}.tar.gz" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf8 -Append
else
echo "COMPRESSED_BINARY=compressed/${{ env.BIN_RELEASE_VERSIONED }}.tar.gz" >> $GITHUB_ENV
fi
- name: Upload Artifact
Expand Down

0 comments on commit e43640c

Please sign in to comment.