-
Notifications
You must be signed in to change notification settings - Fork 63
66 lines (61 loc) · 1.78 KB
/
release_langtrace.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: Build & Release
run-name: "Release ${{ github.sha }}"
on:
pull_request:
branches:
- main
types:
- closed
jobs:
generate-version:
runs-on: ubuntu-latest
outputs:
new_version: ${{ steps.version.outputs.version }}
steps:
- name: Check labels and set version increment
id: set_increment
run: |
labels=$(echo "${{ toJson(github.event.pull_request.labels.*.name) }}")
if [[ $labels == *"major"* ]]; then
echo "increment=major" >> $GITHUB_OUTPUT
elif [[ $labels == *"minor"* ]]; then
echo "increment=minor" >> $GITHUB_OUTPUT
else
echo "increment=patch" >> $GITHUB_OUTPUT
fi
- name: Get next version
# 2023.10.2
uses: reecetech/version-increment@71036b212bbdc100b48aae069870f10953433346
id: version
with:
release_branch: main
use_api: true
scheme: semver
increment: ${{ steps.set_increment.outputs.increment }}
build-docker:
uses: "./.github/workflows/build-docker.yaml"
secrets: inherit
needs:
- generate-version
with:
isLatest: true
imageTag: ${{ needs.generate-version.outputs.new_version }}
publish:
runs-on: ubuntu-latest
needs:
- generate-version
- build-docker
permissions:
contents: write
steps:
- name: Github Checkout
# v4.1.1
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Release
# v1.14.0
uses: ncipollo/release-action@2c591bcc8ecdcd2db72b97d6147f871fcd833ba5
with:
artifacts: "docker-compose.yaml"
tag: ${{ needs.generate-version.outputs.new_version }}
generateReleaseNotes: true
draft: false