Skip to content

Commit

Permalink
ci(github): fix join action for linux (#2219)
Browse files Browse the repository at this point in the history
Use `bash` instead of `sh` since the script downloaded is a bash script.

Also improve slack notifications.

issue: #2175
  • Loading branch information
corverroos authored Oct 18, 2024
1 parent 3580711 commit d5bc956
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-join.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Run a full node
run: |
# As per public docs
curl -sSfL https://raw.githubusercontent.com/omni-network/omni/main/scripts/install_omni_cli.sh | sh -s
curl -sSfL https://raw.githubusercontent.com/omni-network/omni/main/scripts/install_omni_cli.sh | bash -s
# init halo and geth
omni operator init-nodes --network=omega --moniker=ci-nightly --home=$(pwd)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-notify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
"type": "section",
"text": {
"type": "mrkdwn",
"text": "🚨 CI failed on `${{ github.event.repository.name }}:${{ github.event.workflow_run.head_branch }}`."
"text": "🚨 CI failed on `${{ github.event.repository.name }}:${{ github.event.workflow.name }}`."
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/content/build/1-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ And the Omni CLI:

```bash
# install
curl -sSfL https://raw.githubusercontent.com/omni-network/omni/main/scripts/install_omni_cli.sh | sh -s
curl -sSfL https://raw.githubusercontent.com/omni-network/omni/main/scripts/install_omni_cli.sh | bash -s

# check installation
omni version
Expand Down
2 changes: 1 addition & 1 deletion docs/content/operate/1-run-full-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The simplest way to run a full node is with the following commands:

```bash
# install the omni cli (or download https://github.com/omni-network/omni/releases/latest)
curl -sSfL https://raw.githubusercontent.com/omni-network/omni/main/scripts/install_omni_cli.sh | sh -s
curl -sSfL https://raw.githubusercontent.com/omni-network/omni/main/scripts/install_omni_cli.sh | bash -s

# init halo and geth
omni operator init-nodes --network=omega --moniker=foo
Expand Down

0 comments on commit d5bc956

Please sign in to comment.