Skip to content

Commit

Permalink
changed name back to geni
Browse files Browse the repository at this point in the history
  • Loading branch information
emilpriver committed Dec 29, 2023
1 parent f6fec60 commit 1b181e6
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 28 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,12 @@ jobs:
if: ${{matrix.os != 'windows'}}
shell: bash
run: |
cp target/release/cargo-geni geni-${{matrix.os}}-${{matrix.arch}}
cp target/release/geni geni-${{matrix.os}}-${{matrix.arch}}
- name: Rename package
if: ${{matrix.os == 'windows'}}
shell: bash
run: |
cp target/release/cargo-geni.exe geni-${{matrix.os}}-${{matrix.arch}}
cp target/release/geni.exe geni-${{matrix.os}}-${{matrix.arch}}
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}-${{ matrix.arch }}
Expand Down
46 changes: 23 additions & 23 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 = "cargo-geni"
name = "geni"
version = "0.0.2"
edition = "2021"
resolver = "2"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ COPY . .

RUN cargo build --release

RUN cp target/release/cargo-geni /usr/src/app/geni
RUN cp target/release/geni /usr/src/app/geni

FROM rust:1.74.1
COPY --from=builder /usr/src/app/geni /usr/src/app/geni
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ pkgx geni up
### Cargo

```
cargo install cargo-geni
cargo install geni
```

### Docker
Expand Down

0 comments on commit 1b181e6

Please sign in to comment.