forked from p-ranav/argparse
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (35 loc) · 1.01 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Tag & Release
on:
workflow_dispatch:
jobs:
release:
strategy:
fail-fast: true
matrix:
job:
- runner: buildjet-4vcpu-ubuntu-2204
arch: amd64
ros_distro: iron
- runner: buildjet-4vcpu-ubuntu-2204-arm
arch: arm64
ros_distro: iron
- runner: buildjet-4vcpu-ubuntu-2204
arch: amd64
ros_distro: jazzy
- runner: buildjet-4vcpu-ubuntu-2204-arm
arch: arm64
ros_distro: jazzy
name: Release - ${{ matrix.job.arch }}
runs-on: ${{matrix.job.runner}}}
steps:
- name: Checkout this repository
uses: actions/checkout@v3
- name: Semantic release
uses: Greenroom-Robotics/ros_semantic_release_action@main
with:
token: ${{ secrets.API_TOKEN_GITHUB }}
arch: ${{ matrix.job.arch }}
ros_distro: ${{ matrix.job.ros_distro }}
github_release: false
public: true
changelog: false