diff options
| author | Thierry Berger <contact@thierryberger.com> | 2024-09-03 21:48:10 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-03 21:48:10 +0200 |
| commit | 98f9199abc3044779627b859b14f84fff3a97623 (patch) | |
| tree | e082a17dccd0e40c1ecd91525280dbfcfd6e951d /.github/workflows | |
| parent | 58785ce257367f9e016738c2a87413b0590cc67f (diff) | |
| download | rapier-98f9199abc3044779627b859b14f84fff3a97623.tar.gz rapier-98f9199abc3044779627b859b14f84fff3a97623.tar.bz2 rapier-98f9199abc3044779627b859b14f84fff3a97623.zip | |
chore: add publish script for urdf and stl + unify all releases by de… (#727)
* chore: add publish script for urdf and stl + unify all releases by default
* better cross platform publish support
* publish in dry run within ci
* publish scripts better errors, abort if a publish fails, with an exit code.
* chore(rapier_urdf): fix warnings
* chore(rapier-urdf): typo fix
---------
Co-authored-by: Sébastien Crozet <developer@crozet.re>
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/rapier-ci-build.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/rapier-ci-build.yml b/.github/workflows/rapier-ci-build.yml index c44704b..32f4a4a 100644 --- a/.github/workflows/rapier-ci-build.yml +++ b/.github/workflows/rapier-ci-build.yml @@ -97,3 +97,11 @@ jobs: - uses: actions/checkout@v4 - name: check typos uses: crate-ci/typos@v1.23.2 + publish-dry-run: + runs-on: ubuntu-latest + env: + RUSTFLAGS: -D warnings + steps: + - uses: actions/checkout@v4 + - name: publish dry-run + run: ./publish-all.sh |
