Skip to content

Commit

Permalink
chore: Add esbuild to package.json and install protoc in release work…
Browse files Browse the repository at this point in the history
…flow
  • Loading branch information
LuanRT committed Oct 24, 2024
1 parent 51ef60f commit b701e31
Show file tree
Hide file tree
Showing 3 changed files with 458 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,14 @@ jobs:
node-version: 20
registry-url: "https://registry.npmjs.org"
if: ${{ steps.release.outputs.release_created }}
- name: Install protoc
run: |
sudo apt-get update
sudo apt-get install -y unzip
curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v21.12/protoc-21.12-linux-x86_64.zip
unzip protoc-21.12-linux-x86_64.zip -d protoc21
sudo mv protoc21/bin/protoc /usr/local/bin/
if: ${{ steps.release.outputs.release_created }}
- name: Publish to NPM
run: |
npm ci
Expand Down
Loading

0 comments on commit b701e31

Please sign in to comment.