Skip to content

Commit

Permalink
feat: manual workflow for semantic ver
Browse files Browse the repository at this point in the history
  • Loading branch information
Hallfred committed Sep 22, 2024
1 parent 7683703 commit f6ea28c
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/semver.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Semantic Versioning
on:
workflow_dispatch:

jobs:
publish:
# needs: [ ] Insert test workflows for C++ and python
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup ROS2
uses: ros-tooling/[email protected]
with:
required-ros-distributions: humble

- name: Install dependencies
run: |
sudo apt update
sudo apt install -r requirements.txt
- name: Build ROS2 workspace
run: colcon build

- name: Semantic Release
uses: cycjimmy/semantic-release-action@v2
with:
extra_plugins: |
@semantic-release/git
@semantic-release/exec
@semantic-release/changelog

0 comments on commit f6ea28c

Please sign in to comment.