forked from epam/ai-dial-ci
-
Notifications
You must be signed in to change notification settings - Fork 1
112 lines (108 loc) · 3.71 KB
/
python_package_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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
name: Python Package Release workflow
on:
workflow_call:
inputs:
bypass_checks:
type: boolean
default: false
description: Do not fail pipeline if checks failed
enable_style_checks:
type: boolean
default: true
description: Enable style_checks
bypass_style_checks:
type: boolean
default: false
description: Do not fail pipeline if style_checks failed
enable_code_checks:
type: boolean
default: true
description: Enable code_checks
bypass_code_checks:
type: boolean
default: false
description: Do not fail pipeline if code_checks failed
enable_ort:
type: boolean
default: true
description: Enable ORT scanning
bypass_ort:
type: boolean
default: false
description: Do not fail pipeline if ORT scan failed
enable_trivy:
type: boolean
default: true
description: Enable Trivy scanning
bypass_trivy:
type: boolean
default: false
description: Do not fail pipeline if Trivy failed
python_version:
type: string
default: "3.11"
description: Python version to use
test_python_versions:
type: string
description: Python versions to run tests against
default: '["3.8", "3.9", "3.10", "3.11"]'
jobs:
test:
uses: ./.github/workflows/python_package_test.yml
with:
bypass_checks: ${{ inputs.bypass_checks }}
enable_style_checks: ${{ inputs.enable_style_checks }}
bypass_style_checks: ${{ inputs.bypass_style_checks }}
enable_code_checks: ${{ inputs.enable_code_checks }}
bypass_code_checks: ${{ inputs.bypass_code_checks }}
enable_ort: ${{ inputs.enable_ort }}
bypass_ort: ${{ inputs.bypass_ort }}
python_version: ${{ inputs.python_version }}
test_python_versions: ${{ inputs.test_python_versions }}
calculate_version:
runs-on: ubuntu-latest
outputs:
non_semver_next_version: ${{ steps.semantic_versioning.outputs.non_semver_next_version }}
latest_tag: ${{ steps.semantic_versioning.outputs.latest_tag }}
steps:
- uses: alexey-ban/ai-dial-ci/actions/semantic_versioning@main
id: semantic_versioning
release:
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
security-events: write
needs:
- calculate_version
- test
steps:
- uses: alexey-ban/ai-dial-ci/actions/generate_release_notes@main
with:
latest_tag: ${{ needs.calculate_version.outputs.latest_tag }}
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
lfs: true
token: ${{ secrets.ACTIONS_BOT_TOKEN }}
- uses: alexey-ban/ai-dial-ci/actions/python_prepare@main
with:
python_version: ${{ inputs.python_version }}
- name: Set version
shell: bash
run: |
sed -i "s/^version = .*/version = \"${{ needs.calculate_version.outputs.non_semver_next_version }}\"/g" pyproject.toml
- name: Publish to pypi
shell: bash
run: |
make build
make publish
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
- uses: alexey-ban/ai-dial-ci/actions/publish_tag_release@main
with:
tag_version: ${{ needs.calculate_version.outputs.non_semver_next_version }}
changelog_file: "/tmp/my_changelog" # comes from generate_release_notes step; TODO: beautify
artifacts: "dist/*"
extra_commit_command: |
git add pyproject.toml
git commit -m '[skip ci] Update version' || true # upstream branch may already be updated