Skip to content

Commit

Permalink
Added cmake & protobuf to windows ci
Browse files Browse the repository at this point in the history
  • Loading branch information
fayeed committed Oct 16, 2023
1 parent d5722b8 commit f1614a6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,14 @@ jobs:
sudo apt-get update
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf protobuf-compiler
- name: install dependencies (ubuntu only)
- name: install dependencies (macos only)
if: matrix.platform == 'macos-latest'
run: brew install protobuf cmake

- name: install dependencies (windows only)
if: matrix.platform == 'windows-latest'
run: choco install protoc cmake

- name: get version
run: echo "PACKAGE_VERSION=$(node -p "require('./ui/package.json').version")" >> $GITHUB_ENV

Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/publish_staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,14 @@ jobs:
sudo apt-get update
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf protobuf-compiler
- name: install dependencies (ubuntu only)
- name: install dependencies (macos only)
if: matrix.platform == 'macos-latest'
run: brew install protobuf cmake

- name: install dependencies (windows only)
if: matrix.platform == 'windows-latest'
run: choco install protoc cmake

- name: get version
run: echo "PACKAGE_VERSION=$(node -p "require('./ui/package.json').version")" >> $GITHUB_ENV

Expand Down

0 comments on commit f1614a6

Please sign in to comment.