Skip to content

Commit

Permalink
0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Emerson Knapp committed May 24, 2021
1 parent e9d3c6d commit 8461770
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ See [action.yml](action.yml).

`setup-ros` is under active development, and compatibility between releases is not yet guaranteed.
Please do not use `ros-tooling/setup-ros@master`.
Instead, pin your workflows to a particular release, e.g.: `ros-tooling/setup-ros@v0.1`.
Instead, pin your workflows to a particular release, e.g.: `ros-tooling/setup-ros@v0.2`.

### Setting up the worker, and installing the system dependencies

Expand All @@ -89,7 +89,7 @@ This setup should be used when ROS is built entirely from source.

```yaml
steps:
- uses: ros-tooling/setup-ros@v0.1
- uses: ros-tooling/setup-ros@v0.2
- run: vcs --help
```
Expand All @@ -108,7 +108,7 @@ jobs:
os: [macOS-latest, windows-latest]
steps:
- name: Setup ROS
uses: ros-tooling/setup-ros@v0.1
uses: ros-tooling/setup-ros@v0.2
- run: vcs --help
build_docker:
Expand All @@ -117,7 +117,7 @@ jobs:
image: ubuntu:focal
steps:
- name: Setup ROS
uses: ros-tooling/setup-ros@v0.1
uses: ros-tooling/setup-ros@v0.2
- run: vcs --help
```

Expand All @@ -132,7 +132,7 @@ build_docker:
container:
image: ubuntu:focal
steps:
- uses: ros-tooling/setup-ros@v0.1
- uses: ros-tooling/setup-ros@v0.2
with:
required-ros-distributions: noetic galactic
- run: "source /opt/ros/galactic/setup.bash && ros2 run --help"
Expand All @@ -149,7 +149,7 @@ build_docker:
container:
image: ubuntu:focal
steps:
- uses: ros-tooling/setup-ros@v0.1
- uses: ros-tooling/setup-ros@v0.2
with:
use-ros2-testing: true
required-ros-distributions: galactic
Expand All @@ -167,7 +167,7 @@ build_docker:
container:
image: ubuntu:focal
steps:
- uses: ros-tooling/setup-ros@v0.1
- uses: ros-tooling/setup-ros@v0.2
with:
install-connext: true
use-ros2-testing: true
Expand Down Expand Up @@ -198,7 +198,7 @@ jobs:
- foxy
- galactic
steps:
- uses: ros-tooling/setup-ros@v0.1
- uses: ros-tooling/setup-ros@v0.2
with:
required-ros-distributions: ${{ matrix.ros_distribution }}
- name: build and test
Expand Down Expand Up @@ -271,7 +271,7 @@ jobs:
image: ${{ matrix.docker_image }}
steps:
- name: setup ROS environment
uses: ros-tooling/setup-ros@v0.1
uses: ros-tooling/setup-ros@v0.2
with:
required-ros-distributions: ${{ matrix.ros_distribution }}
- name: build and test ROS 1
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "setup-ros",
"version": "0.1.5",
"version": "0.2.0",
"description": "GitHub Action to setup a ROS 2 development environment",
"main": "lib/main.js",
"scripts": {
Expand Down

0 comments on commit 8461770

Please sign in to comment.