-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (40 loc) · 1.22 KB
/
bump-version.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
name: Bump version
on:
push:
branches:
- main
jobs:
bump-version:
if: "!startsWith(github.event.head_commit.message, 'bump:')"
runs-on: ubuntu-latest
name: "Bump version and create changelog with commitizen"
permissions:
contents: write
steps:
- name: Check out
uses: actions/checkout@v3
with:
fetch-depth: 0
token: "${{ secrets.GITHUB_TOKEN }}"
- name: Create bump and changelog
uses: commitizen-tools/commitizen-action@master
with:
changelog_increment_filename: changelog.md
github_token: "${{ secrets.GITHUB_TOKEN }}"
- name: Zip docker-compose and Helm charts
run: |
tar -czf docker-compose.tar.gz docker-compose
tar -czf ray-helm-chart.tar.gz helm/ray
tar -czf syntho-ui-helm-chart.tar.gz helm/syntho-ui
- name: Release
uses: softprops/action-gh-release@v1
with:
body_path: "changelog.md"
tag_name: ${{ env.REVISION }}
files: |
changelog.md
docker-compose.tar.gz
ray-helm-chart.tar.gz
syntho-ui-helm-chart.tar.gz
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}