Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,23 +66,23 @@ jobs:
target: x86_64-unknown-linux-gnu
- os: ubuntu-latest
target: i686-unknown-linux-gnu
- os: ubuntu-latest
target: x86_64-unknown-linux-musl
- os: windows-latest
target: x86_64-pc-windows-msvc
- os: windows-latest
target: i686-pc-windows-msvc
# - i686-pc-windows-gnu
# - x86_64-pc-windows-gnu
runs-on: ${{ matrix.os }}
steps:
- name: Install rust
uses: dtolnay/rust-toolchain@1.88.0
with:
target: ${{ matrix.target }}
- name: Install linker
if: matrix.target == 'i686-unknown-linux-gnu'
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install gcc-multilib
sudo apt-get install musl-tools gcc-multilib
- name: Checkout
uses: actions/checkout@v4
- name: Build
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,13 @@ scoop install automa
nix profile install github:automa/cli
```

<!-- omit from toc -->
#### With [NPM](https://npmjs.com)

```
npm install -g @automa/cli
```

<!-- omit from toc -->
#### Direct

Expand Down
7 changes: 2 additions & 5 deletions publisher.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,8 @@ repository = "automa/cli"

exclude = ["aur"]

[homebrew]
repository = "automa/cli"

[aur_bin]
name = "automa"

[scoop]
repository = "automa/cli"
[npm]
name = "@automa/cli"
Loading