Skip to content

Commit

Permalink
Fix env.
Browse files Browse the repository at this point in the history
  • Loading branch information
fnando committed Nov 13, 2024
1 parent d1e467c commit cec03be
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,15 +116,16 @@ jobs:
run: |
version="$(cargo metadata --format-version 1 --no-deps | jq -r '.packages[] | select(.name == "stellar-cli") | .version')"
echo "VERSION=${version}" >> $GITHUB_ENV
echo "STELLAR_CLI_INSTALLER=stellar-cli-installer-${version}-x86_64-pc-windows-msvc.exe"
echo "STELLAR_CLI_INSTALLER=stellar-cli-installer-${version}-x86_64-pc-windows-msvc.exe" >> $GITHUB_ENV
echo "ARTIFACT_NAME=stellar-cli-${version}-x86_64-pc-windows-msvc.tar.gz" >> $GITHUB_ENV
- name: Download Artifact
uses: actions/download-artifact@v4
with:
name: stellar-cli-${{ env.VERSION }}-x86_64-pc-windows-msvc.tar.gz
name: ${{ env.ARTIFACT_NAME }}

- name: Uncompress Artifact
run: tar xvf stellar-cli-${{ env.VERSION }}-x86_64-pc-windows-msvc.tar.gz
run: tar xvf ${{ env.ARTIFACT_NAME }}

- name: Build Installer
run: |
Expand Down

0 comments on commit cec03be

Please sign in to comment.