-
Notifications
You must be signed in to change notification settings - Fork 7
90 lines (90 loc) · 3.12 KB
/
release-please.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
on:
push:
branches:
- master
name: Run Release Please
jobs:
release-please-python:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
command: manifest
token: ${{secrets.GH_ACCESS_TOKEN}}
config-file: release-please/config-python.json
manifest-file: release-please/manifest-python.json
- run: echo "A release was created."
if: ${{ steps.release.outputs.releases_created }}
release-please-java:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
command: manifest
token: ${{secrets.GH_ACCESS_TOKEN}}
config-file: release-please/config-java.json
manifest-file: release-please/manifest-java.json
- run: echo "A release was created."
if: ${{ steps.release.outputs.releases_created }}
release-please-typescript:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
command: manifest
token: ${{secrets.GH_ACCESS_TOKEN}}
config-file: release-please/config-typescript.json
manifest-file: release-please/manifest-typescript.json
- run: echo "A release was created."
if: ${{ steps.release.outputs.releases_created }}
release-please-go:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
command: manifest
token: ${{secrets.GH_ACCESS_TOKEN}}
config-file: release-please/config-go.json
manifest-file: release-please/manifest-go.json
- run: echo "A release was created."
if: ${{ steps.release.outputs.releases_created }}
release-please-cli:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
command: manifest
token: ${{secrets.GH_ACCESS_TOKEN}}
config-file: release-please/config-cli.json
manifest-file: release-please/manifest-cli.json
- run: echo "A release was created."
if: ${{ steps.release.outputs.releases_created }}
release-please-ruby:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
command: manifest
token: ${{secrets.GH_ACCESS_TOKEN}}
config-file: release-please/config-ruby.json
manifest-file: release-please/manifest-ruby.json
- run: echo "A release was created."
if: ${{ steps.release.outputs.releases_created }}
release-please-php:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
command: manifest
token: ${{secrets.GH_ACCESS_TOKEN}}
config-file: release-please/config-php.json
manifest-file: release-please/manifest-php.json
- run: echo "A release was created."
if: ${{ steps.release.outputs.releases_created }}