We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a94a54 commit 15fec51Copy full SHA for 15fec51
.github/workflows/release.yml
@@ -89,6 +89,14 @@ jobs:
89
unzip protoc-21.12-linux-x86_64.zip -d protoc
90
sudo cp protoc/bin/protoc /usr/local/bin/
91
sudo cp -r protoc/include/google /usr/local/include/
92
+
93
+ - name: Install Protoc for musl
94
+ if: contains(matrix.arch, 'linux') && endsWith(matrix.arch, '-musl')
95
+ run: | # Make sure the protoc is >= 3.15
96
+ wget https://github.com/protocolbuffers/protobuf/releases/download/v21.12/protoc-21.12-linux-x86_64.zip
97
+ unzip protoc-21.12-linux-x86_64.zip -d protoc
98
+ sudo cp protoc/bin/protoc /usr/local/bin/
99
+ sudo cp -r protoc/include/google /usr/local/include/
100
101
- name: Install Protoc for windows
102
if: contains(matrix.arch, 'windows')
0 commit comments