Skip to content

Commit

Permalink
ci: update workkflow
Browse files Browse the repository at this point in the history
  • Loading branch information
oderayi committed Apr 17, 2024
1 parent 1b6c770 commit 87ae9a8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/create-release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,16 +81,17 @@ jobs:
- name: Install dependencies
run: |
# Install mo
sudo curl -sL https://raw.githubusercontent.com/tests-always-included/mo/main/mo -o /usr/bin/mo
curl -sSL https://raw.githubusercontent.com/tests-always-included/mo/master/mo -o mo
if [ $? -ne 0 ]; then
echo "Failed to download mo"
exit 1
fi
sudo chmod +x /usr/bin/mo
sudo chmod +x mo
if [ $? -ne 0 ]; then
echo "Failed to make mo executable"
exit 1
fi
sudo mv mo /usr/local/bin/
mo --help
Expand Down

0 comments on commit 87ae9a8

Please sign in to comment.