-
Notifications
You must be signed in to change notification settings - Fork 6
49 lines (41 loc) · 1.22 KB
/
release.yml
File metadata and controls
49 lines (41 loc) · 1.22 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
name: PyPI Release
on:
push:
branches:
- main
workflow_dispatch:
jobs:
pypi-publish:
name: pypi-publish
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/cmdbench
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install build dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Check if version exists
id: check_version
run: |
VERSION=$(grep -m1 version pyproject.toml | cut -d'"' -f2)
if pip install cmdbench==$VERSION; then
echo "Version $VERSION already exists on PyPI"
echo "skip_upload=true" >> $GITHUB_OUTPUT
else
echo "Version $VERSION does not exist on PyPI"
echo "skip_upload=false" >> $GITHUB_OUTPUT
fi
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
if: steps.check_version.outputs.skip_upload == 'false'