Skip to content

Commit ec6f550

Browse files
committed
fix gh action
1 parent e8d0dc5 commit ec6f550

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/cd.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
tags:
77
- 9.3.**
88
jobs:
9-
run-ci-tests-stream-8:
9+
run-rel-tests-stream-8:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v2
@@ -22,7 +22,7 @@ jobs:
2222
token: ${{ secrets.GITHUB_TOKEN }}
2323
allowUpdates: true
2424
prerelease: ${{ !endsWith( env.GITHUB_REF_NAME, 'Final') }}
25-
run-ci-tests-stream-9:
25+
run-rel-tests-stream-9:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- uses: actions/checkout@v2
@@ -38,7 +38,7 @@ jobs:
3838
token: ${{ secrets.GITHUB_TOKEN }}
3939
allowUpdates: true
4040
prerelease: ${{ !endsWith( env.GITHUB_REF_NAME, 'Final') }}
41-
run-ci-tests-win:
41+
run-rel-tests-win:
4242
runs-on: windows-latest
4343
steps:
4444
- uses: actions/checkout@v2
@@ -69,6 +69,7 @@ jobs:
6969
with:
7070
python-version: "3.x" # Version range or exact version of a Python version to use, using SemVer's version range syntax
7171
architecture: "x64" # optional x64 or x86. Defaults to x64 if not specified
72+
- uses: ssciwr/doxygen-install@v1
7273
- shell: cmd
7374
run: |
7475
echo '::echo::on'

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
shell: cmd
6262
run: |
6363
cd ${{ github.workspace }}
64-
git clone -b v3.8.0 https://github.com/protocolbuffers/protobuf.git
64+
git clone -b v3.8.0 https://github.com/protocolbuffers/protobuf.git
6565
mkdir libs
6666
cd protobuf
6767
mkdir build && cd build

0 commit comments

Comments
 (0)