Skip to content

Commit

Permalink
change name
Browse files Browse the repository at this point in the history
  • Loading branch information
thesandybridge committed Mar 3, 2023
1 parent 64af866 commit 201cf39
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ jobs:
override: true

- name: Build
run: cargo build --all --release && strip target/release/cyphers && mv target/release/cyphers target/release/cyphers_amd64
run: cargo build --all --release && strip target/release/cypher && mv target/release/cypher target/release/cypher_amd64

- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
target/release/cyphers_amd64
target/release/cypher_amd64
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -52,7 +52,7 @@ jobs:
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: target/release/cyphers.exe
files: target/release/cypher.exe
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -72,13 +72,13 @@ jobs:
override: true

- name: Build for mac
run: cargo build --all --release && strip target/release/cyphers && mv target/release/cyphers target/release/cyphers_darwin
run: cargo build --all --release && strip target/release/cypher && mv target/release/cypher target/release/cypher_darwin

- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
target/release/cyphers_darwin
target/release/cypher_darwin
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Cyhpher CLI
# Cypher CLI

A collection of cyphers CLI built with rust. Build the binary and execute.

Expand Down

0 comments on commit 201cf39

Please sign in to comment.