Make Windows Plugin #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Make Windows Plugin | |
on: | |
workflow_dispatch: | |
inputs: | |
version_number: | |
description: 'Version number' | |
required: true | |
default: '1.x.x' | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Print Bazel version | |
run: | | |
bazel version | |
- name: build | |
run: bazel build javascript/net/grpc/web/generator:protoc-gen-grpc-web | |
- name: move | |
run: | | |
mv bazel-bin/javascript/net/grpc/web/generator/protoc-gen-grpc-web.exe \ | |
./protoc-gen-grpc-web-${{ github.event.inputs.version_number }}-windows-x86_64.exe | |
shell: bash | |
- name: gen sha256 | |
run: | | |
openssl dgst -sha256 -r -out protoc-gen-grpc-web-${{ github.event.inputs.version_number }}-windows-x86_64.exe.sha256 \ | |
protoc-gen-grpc-web-${{ github.event.inputs.version_number }}-windows-x86_64.exe | |
shell: bash | |
# TODO: Check sha256 (sha256sum not available for now. ) | |
#- name: verify sha256 | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: plugin | |
path: protoc-gen-grpc-web* |