summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorMatan Kushner <hello@matchai.me>2019-12-19 18:09:03 -0500
committerMatan Kushner <hello@matchai.me>2019-12-19 18:09:13 -0500
commit49d1c250d55e4e1d869c4d2212950e8d48bb0be9 (patch)
tree7ef291f249b2c22ab040167e1f98142870414f7b /.github
parentf898b22b552a101724f1aa2275c6e19f7f2e9777 (diff)
build: Install libssl-dev during musl build
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/workflow.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml
index 63dcbcfcf..b8979b240 100644
--- a/.github/workflows/workflow.yml
+++ b/.github/workflows/workflow.yml
@@ -204,7 +204,7 @@ jobs:
sudo git reset --hard origin/master
cd -
- brew bump-formula-pr --url=https://github.com/starship/starship/archive/$(git describe --tags).tar.gz --message="Automated release pull request using continuous integration." --no-browse -v starship --force
+ brew bump-formula-pr --url=https://github.com/starship/starship/archive/$(git describe --tags).tar.gz --message="Automated release pull request using continuous integration. If you have any questions, please ping `@matchai`." --no-browse -v starship --force
env:
HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.HOMEBREW_GITHUB_API_TOKEN }}
@@ -247,7 +247,8 @@ jobs:
- name: Install musl tools
if: matrix.target == 'x86_64-unknown-linux-musl'
- run: sudo apt-get install -y musl-tools
+ # Install libssl-dev for openssl-sys
+ run: sudo apt-get install -y musl-tools libssl-dev
- name: Build target
uses: actions-rs/cargo@v1