Skip to content

Commit 84c1e20

Browse files
authored
Add prerelease workflow, thanks Tyler (#447)
1 parent 630b610 commit 84c1e20

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/prerelease.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# This config uses industrial_ci (https://github.com/ros-industrial/industrial_ci.git).
2+
# For troubleshooting, see readme (https://github.com/ros-industrial/industrial_ci/blob/master/README.rst)
3+
4+
name: pre-release
5+
6+
on:
7+
workflow_dispatch:
8+
9+
jobs:
10+
default:
11+
strategy:
12+
fail-fast: false
13+
matrix:
14+
distro: [foxy, galactic, rolling]
15+
16+
env:
17+
ROS_DISTRO: ${{ matrix.distro }}
18+
PRERELEASE: true
19+
BASEDIR: ${{ github.workspace }}/.work
20+
21+
name: "${{ matrix.distro }}"
22+
runs-on: ubuntu-latest
23+
steps:
24+
- uses: actions/checkout@v2
25+
- name: industrial_ci
26+
uses: ros-industrial/industrial_ci@master
27+

0 commit comments

Comments
 (0)