-
Notifications
You must be signed in to change notification settings - Fork 3
33 lines (29 loc) · 776 Bytes
/
cd.yaml
File metadata and controls
33 lines (29 loc) · 776 Bytes
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
name: CD Workflow
on:
push:
branches:
- main
jobs:
check-version:
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install uv & python
uses: astral-sh/setup-uv@v7
with:
version: "0.10.4"
python-version: "3.9"
enable-cache: "false"
- name: Push tag for each updated package
env:
GH_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
run: |
git config --global user.name "SDK Releaser Bot"
git config --global user.email "noreply@stackit.de"
scripts/cd.sh