Skip to content

Commit

Permalink
Chore: Rework the compile splitsh command (#7755)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hectorhammett authored Oct 21, 2024
1 parent 6dcd0cd commit 12921fc
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,17 @@ jobs:
mkdir libgit2/build && cd libgit2/build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local
sudo cmake --build . --target install
- name: Compile splitsh
- name: Clone splitsh/lite
uses: actions/checkout@master
with:
repository: splitsh/lite
ref: v2.0.0
path: lite
- name: Build splitsh-lite
run: |
go env -w GO111MODULE=off
go get github.com/splitsh/lite
go build -o /usr/local/bin/splitsh-lite github.com/splitsh/lite
cd lite
go build -o splitsh-lite github.com/splitsh/lite
mv splitsh-lite /usr/local/bin/splitsh-lite
- name: Checkout google/cloud
uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 12921fc

Please sign in to comment.