Skip to content

Commit

Permalink
env
Browse files Browse the repository at this point in the history
  • Loading branch information
eemmiillyy committed Jul 23, 2024
1 parent 79275e9 commit deb64b6
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/release-cli-assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,10 @@ jobs:

- name: Capture version
id: capture-version
env:
PUBLISHED_PACKAGES: ${{ inputs.publishedPackages }}
run: |
version=$(pnpm run release:version --silent);
version=$(pnpm run release:version);
echo "$version" >> "$GITHUB_OUTPUT"
- name: Create SHA outputs macos
Expand All @@ -160,8 +162,8 @@ jobs:
working-directory: /home/runner/work/client-ts/client-ts/cli/dist
id: sha-ubuntu
run: |
echo "sha-linux=(sha256sum xata-v${{ steps.capture-version.version }}-${{inputs.commitSha}}-linux-arm.tar.gz)" >> "$GITHUB_OUTPUT"
echo "sha-linux-arm=(sha256sum xata-v${{ steps.capture-version.version }}-${{inputs.commitSha}}-linux-arm64.tar.gz)" >> "$GITHUB_OUTPUT"
echo "sha-linux=$(sha256sum xata-v${{ steps.capture-version.version }}-${{inputs.commitSha}}-linux-arm.tar.gz)" >> "$GITHUB_OUTPUT"
echo "sha-linux-arm=$(sha256sum xata-v${{ steps.capture-version.version }}-${{inputs.commitSha}}-linux-arm64.tar.gz)" >> "$GITHUB_OUTPUT"
# - name: Upload and Promote CLI Assets to S3
# run: pnpm run release:cli:upload:s3
Expand Down

0 comments on commit deb64b6

Please sign in to comment.