-
Notifications
You must be signed in to change notification settings - Fork 1
44 lines (38 loc) · 1.02 KB
/
release.yaml
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: Release to Github releases
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch: {}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
release-and-prerelease:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
with:
fetch-depth: 0
- name: cheetah-application
uses: ./.github/actions/release-chart
continue-on-error: true
with:
name: cheetah-application
token: ${{ secrets.GITHUB_TOKEN }}
- name: flink-job
uses: ./.github/actions/release-chart
continue-on-error: true
with:
name: flink-job
token: ${{ secrets.GITHUB_TOKEN }}
- name: image-automation
uses: ./.github/actions/release-chart
continue-on-error: true
with:
name: image-automation
token: ${{ secrets.GITHUB_TOKEN }}