Skip to content

Commit

Permalink
chore: rename to streamstore-cli (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
infiniteregrets authored Dec 11, 2024
1 parent ea31867 commit 1191cf2
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 27 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,15 @@ jobs:
run: |
echo "${{ secrets.MACOS_PEM }}" | base64 -d -o macos.pem
echo "${{ secrets.MACOS_CERTIFICATE_DER }}" | base64 -d -o certificate.der
- name: rename binary streamstore-cli -> s2
shell: bash
run:
if [ "${{ matrix.os }}" = "windows-latest" ];
then
mv target/${{ matrix.target }}/release/streamstore-cli.exe target/${{ matrix.target }}/release/s2.exe
else
mv target/${{ matrix.target }}/release/streamstore-cli target/${{ matrix.target }}/release/s2
fi
- name: Sign macos binary
if: matrix.os == 'macos-latest'
uses: indygreg/apple-code-sign-action@v1
Expand Down
52 changes: 26 additions & 26 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "s2"
name = "streamstore-cli"
version = "0.3.0"
edition = "2021"
license = "Apache-2.0"
Expand Down

0 comments on commit 1191cf2

Please sign in to comment.