Skip to content

Commit

Permalink
fix: BINARY_FILE name (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
poppoerika authored Apr 15, 2022
1 parent c791b6e commit 31b5fc1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
run: |
yum install jq -y
VERSION=${{ needs.release.outputs.version }}
BINARY_FILE=momento-cli-$VERSION_linux_x86_64.tar.gz
BINARY_FILE="momento-cli-$VERSION.linux_x86_64.tar.gz"
cargo build --release
tar zcvf $BINARY_FILE ./target/release/momento
AUTH="Authorization: token ${{ secrets.PRIVATE_REPO_RELEASE_ACCESS }}"
Expand Down
2 changes: 1 addition & 1 deletion README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ momento cache get --key key --name example-cache
### Linux

1. 最新の linux tar.gz ファイルを[https://github.com/momentohq/momento-cli/releases/latest](https://github.com/momentohq/momento-cli/releases/latest)よりダウンロードする。
2. `tar -xvf momento-cli-X.X.X_linux_x86_64.tar.gz`ファイルを展開する。
2. `tar -xvf momento-cli-X.X.X.linux_x86_64.tar.gz`ファイルを展開する。
3. `./momento`を実行パスに置く。

## アップグレード
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ momento cache get --key key --name example-cache
### Linux

1. Download the latest linux tar.gz file from [https://github.com/momentohq/momento-cli/releases/latest](https://github.com/momentohq/momento-cli/releases/latest)
2. Unzip the file: `tar -xvf momento-cli-X.X.X_linux_x86_64.tar.gz`
2. Unzip the file: `tar -xvf momento-cli-X.X.X.linux_x86_64.tar.gz`
3. Move `./momento` to your execution path.

## Upgrading
Expand Down

0 comments on commit 31b5fc1

Please sign in to comment.