Skip to content

Commit

Permalink
ci(script): enhance CI workflows and API integration
Browse files Browse the repository at this point in the history
- Change script execution to a multi-line bash script with error handling in GitHub workflow

Signed-off-by: appleboy <[email protected]>
  • Loading branch information
appleboy committed Oct 23, 2024
1 parent 3f14168 commit 2763143
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ jobs:
username: linuxserver.io
password: password
port: 2222
script: whoami
script: |
#!/usr/bin/env bash
set -e
whoami
check-ssh-key:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 2763143

Please sign in to comment.