Browse Source

Minor release fix

tags/v0.3.9-rc1
haixuantao 11 months ago
parent
commit
0026331df6
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      .github/workflows/node-hub-ci-cd.yml
  2. +1
    -1
      Cargo.toml

+ 2
- 2
.github/workflows/node-hub-ci-cd.yml View File

@@ -54,7 +54,7 @@ jobs:
sudo apt-get install portaudio19-dev

- name: Install system-level dependencies for MacOS
if: runner.os == 'Mac' || github.event_name == 'workflow_dispatch' || (github.event_name == 'release' && startsWith(github.ref, 'refs/tags/'))
if: runner.os == 'Mac' && (github.event_name == 'workflow_dispatch' || (github.event_name == 'release' && startsWith(github.ref, 'refs/tags/')))
run: |
brew install portaudio

@@ -152,7 +152,7 @@ jobs:
env:
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_PASS }}
UV_PUBLISH_TOKEN: ${{ secrets.PYPI_PASS }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
CARGO_REGISTRY_TO(())KEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
run: |
dir=$(pwd)
base_dir=$(basename "$dir")


+ 1
- 1
Cargo.toml View File

@@ -73,7 +73,7 @@ dora-ros2-bridge = { path = "libraries/extensions/ros2-bridge" }
dora-ros2-bridge-msg-gen = { path = "libraries/extensions/ros2-bridge/msg-gen" }
dora-ros2-bridge-python = { path = "libraries/extensions/ros2-bridge/python" }
# versioned independently from the other dora crates
dora-message = { version = "0.4.2", path = "libraries/message" }
dora-message = { version = "0.4.3", path = "libraries/message" }
arrow = { version = "53" }
arrow-schema = { version = "53" }
arrow-data = { version = "53" }


Loading…
Cancel
Save