Skip to content

Commit 74b1e5e

Browse files
committed
CI: prerelease.yaml: make ROS_DISTRO an interactive input
1 parent 8ede80d commit 74b1e5e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/prerelease.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,24 @@ name: pre-release
55

66
on:
77
workflow_dispatch:
8+
inputs:
9+
ROS_DISTRO:
10+
type: string
11+
required: true
12+
description: 'ROS distribution codename:'
13+
default: noetic
814

915
permissions:
1016
contents: read # to fetch code (actions/checkout)
1117

1218
jobs:
1319
default:
14-
strategy:
15-
matrix:
16-
distro: [noetic]
17-
1820
env:
19-
# https://github.com/ros-industrial/industrial_ci/issues/666
20-
BUILDER: catkin_make_isolated
21-
ROS_DISTRO: ${{ matrix.distro }}
21+
ROS_DISTRO: ${{ inputs.ROS_DISTRO }}
2222
PRERELEASE: true
2323
BASEDIR: ${{ github.workspace }}/.work
2424

25-
name: "${{ matrix.distro }}"
25+
name: "${{ inputs.ROS_DISTRO }}"
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: "Free up disk space"

0 commit comments

Comments
 (0)