-
Notifications
You must be signed in to change notification settings - Fork 3
56 lines (46 loc) · 1.29 KB
/
release.yml
File metadata and controls
56 lines (46 loc) · 1.29 KB
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
name: Release
on:
push:
branches:
- main
- beta
permissions:
contents: write
packages: write
id-token: write
checks: read
defaults:
run:
working-directory: ./
jobs:
publish-package:
runs-on: ubuntu-latest
name: To Artifactory
steps:
- name: Harden runner
uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0
with:
egress-policy: audit
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- name: Setup uv
uses: astral-sh/setup-uv@v4
with:
python-version: "3.10"
- name: Install dependencies
run: uv sync --group dev --frozen
- name: Setup Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 'lts/*'
- name: Run semantic-release
uses: mridang/action-semantic-release@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
env:
DOCKER_REGISTRY_USER: ${{ github.actor }}
DOCKER_REGISTRY_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}