Skip to content

Commit

Permalink
stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
codekansas committed Nov 1, 2024
1 parent 0b0e59d commit f01bfcc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ jobs:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
source $HOME/.cargo/env
pip install setuptools-rust
if [ "$RUNNER_OS" == "Linux" ]; then
if [ "${{ runner.os }}" == "Linux" ]; then
sudo apt-get update
sudo apt-get install -y protobuf-compiler
elif [ "$RUNNER_OS" == "macOS" ]; then
elif [ "${{ runner.os }}" == "macOS" ]; then
brew install protobuf
else
echo "Unsupported OS: $RUNNER_OS"
echo "Unsupported OS: ${{ runner.os }}"
exit 1
fi
protoc --version
Expand Down

0 comments on commit f01bfcc

Please sign in to comment.