mirror of
https://github.com/meshtastic/protobufs.git
synced 2026-04-20 22:13:55 +00:00
Build and publish NPM module
This commit is contained in:
parent
f1e26d1e0f
commit
2a0cbc67c1
3 changed files with 60 additions and 1 deletions
28
.github/workflows/publish.yml
vendored
28
.github/workflows/publish.yml
vendored
|
|
@ -14,12 +14,14 @@ jobs:
|
|||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
- name: debug
|
||||
run: cat packages/ts/deno.json && cat packages/rust/Cargo.toml
|
||||
run: cat packages/ts/deno.json && cat packages/rust/Cargo.toml && cat packages/ts/package.json
|
||||
- name: Set Package Versions to current tag
|
||||
# run: sed -i "s/__PACKAGE_VERSION__/$(echo $GITHUB_REF | cut -d '/' -f 3)/g" packages/ts/deno.json \
|
||||
# && sed -i "s/__PACKAGE_VERSION__/$(echo $GITHUB_REF | cut -d '/' -f 3)/g" packages/ts/package.json \
|
||||
# && sed -i "s/__PACKAGE_VERSION__/$(echo $GITHUB_REF | cut -d '/' -f 3)/g" packages/rust/Cargo.toml
|
||||
run: |
|
||||
sed -i "s/__PACKAGE_VERSION__/2.7.0/g" packages/ts/deno.json
|
||||
sed -i "s/__PACKAGE_VERSION__/2.7.0/g" packages/ts/package.json
|
||||
sed -i "s/__PACKAGE_VERSION__/2.7.0/g" packages/rust/Cargo.toml
|
||||
- name: Setup Buf
|
||||
uses: bufbuild/buf-setup-action@main
|
||||
|
|
@ -67,6 +69,30 @@ jobs:
|
|||
- name: Publish to JSR
|
||||
run: deno publish --unstable-sloppy-imports
|
||||
|
||||
publish-npm:
|
||||
runs-on: ubuntu-24.04
|
||||
permissions:
|
||||
contents: read
|
||||
id-token: write
|
||||
steps:
|
||||
- name: Download TypeScript code
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: ts_code
|
||||
- name: Install Node.js
|
||||
uses: actions/setup-node@v5
|
||||
with:
|
||||
node-version: lts/*
|
||||
registry-url: https://registry.npmjs.org/
|
||||
- name: Install NPM dependencies
|
||||
run: npm install
|
||||
- name: Build JavaScript module
|
||||
run: npm run build
|
||||
- name: Publish NPM package
|
||||
run: npm publish
|
||||
env:
|
||||
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|
||||
|
||||
publish-cargo:
|
||||
runs-on: ubuntu-24.04
|
||||
needs: codegen
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue