-
Notifications
You must be signed in to change notification settings - Fork 20
38 lines (36 loc) · 1.11 KB
/
bloom-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
# This file is automatically deployed from https://github.com/at-wat/.rospkg-assets.
# Please don't directly edit; update at-wat/.rospkg-assets instead.
name: bloom-release
on:
push:
paths:
- package.xml
- '*/package.xml'
branches:
- master
jobs:
bloom-release:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: bloom release
id: bloom
uses: at-wat/bloom-release-action@v0
with:
ros_distro: noetic
github_token_bloom: ${{ secrets.BLOOM_GITHUB_TOKEN }}
github_user: at-wat
git_user: Atsushi Watanabe
git_email: [email protected]
release_repository_push_url: https://github.com/${{ github.repository }}-release.git
tag_and_release: true
open_pr: true
- name: create GitHub release
continue-on-error: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release create \
${{ steps.bloom.outputs.version }} \
--title "Release ${{ steps.bloom.outputs.version }}"