forked from djarek/canary
-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (39 loc) · 1.17 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
41
42
43
44
name: Tag & Release
on:
workflow_dispatch:
jobs:
release:
strategy:
fail-fast: true
matrix:
job:
- runner: buildjet-4vcpu-ubuntu-2204
arch: amd64
ros_distro: iron
github_release: true
- runner: buildjet-4vcpu-ubuntu-2204-arm
arch: arm64
ros_distro: iron
github_release: false
- runner: buildjet-4vcpu-ubuntu-2204
arch: amd64
ros_distro: jazzy
github_release: false
- runner: buildjet-4vcpu-ubuntu-2204-arm
arch: arm64
ros_distro: jazzy
github_release: false
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: ${{ matrix.job.github_release }}
public: true
changelog: false