Skip to content

Commit

Permalink
asdf
Browse files Browse the repository at this point in the history
  • Loading branch information
codekansas committed Nov 1, 2024
1 parent 115ddc6 commit 10bf8ce
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ jobs:
pip install setuptools-rust
if [ "${{ runner.os }}" == "Linux" ]; then
sudo apt-get update
sudo apt-get install -y unzip
apt-get update
apt-get install -y unzip
PROTOC_ZIP=protoc-25.1-linux-x86_64.zip
elif [ "${{ runner.os }}" == "macOS" ]; then
brew install unzip
Expand All @@ -63,8 +63,8 @@ jobs:
fi
curl -LO https://github.com/protocolbuffers/protobuf/releases/download/v25.1/$PROTOC_ZIP
sudo unzip -o $PROTOC_ZIP -d /usr/local bin/protoc
sudo unzip -o $PROTOC_ZIP -d /usr/local 'include/*'
unzip -o $PROTOC_ZIP -d /usr/local bin/protoc
unzip -o $PROTOC_ZIP -d /usr/local 'include/*'
rm -f $PROTOC_ZIP
/usr/local/bin/protoc --version
Expand Down

0 comments on commit 10bf8ce

Please sign in to comment.