Skip to content

Commit

Permalink
update resto install command README, fix Test 2 step in Resto CI
Browse files Browse the repository at this point in the history
  • Loading branch information
abdfnx committed Dec 17, 2021
1 parent 7b672c7 commit f1b1ea7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ jobs:
go build -ldflags "-X main.version=$(git describe --abbrev=0 --tags) -X main.versionDate=$(cat date.txt)" -o resto
- name: Test it
run: ./resto install https://deno.land/x/install/install.sh
run: |
./resto install https://deno.land/x/install/install.sh
export DENO_INSTALL="/home/runner/.deno"
export PATH="$DENO_INSTALL/bin:$PATH"
- name: Test 2
run: |
Expand Down
2 changes: 2 additions & 0 deletions cli/install/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

> The `resto install` command is used to install binary app from script URL and run it.
this command is alternative to `curl -sL URL | bash`

```bash
resto i https://deno.land/x/install/install.sh

Expand Down

0 comments on commit f1b1ea7

Please sign in to comment.