We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d9e8da0 + bbe66ef commit 13406dbCopy full SHA for 13406db
.github/workflows/publish-to-auto-release.yml
@@ -40,6 +40,10 @@ jobs:
40
# Those targets are only used on macos runners so it's in an `if` to slightly speed up windows and linux builds.
41
targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}
42
43
+ - name: Install protoc on Windows
44
+ if: matrix.platform == 'windows-latest'
45
+ run: choco install protoc -y
46
+
47
- name: install dependencies (ubuntu only)
48
if: matrix.platform == 'ubuntu-22.04' # This must match the platform value defined above.
49
run: |
@@ -60,4 +64,4 @@ jobs:
60
64
releaseBody: "See the assets to download this version and install."
61
65
releaseDraft: true
62
66
prerelease: false
63
- args: ${{ matrix.args }}
67
+ args: ${{ matrix.args }}
0 commit comments