-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (51 loc) · 1.69 KB
/
publish.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
name: Upload Python Package
on:
release:
types: [published]
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: recursive
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
# - name: Git tag version
# id: git_tag_version
# run: |
# # Extract the version from the tag (e.g., 'v1.0.0' becomes '1.0.0')
# GIT_TAG_VERSION=${GITHUB_REF#refs/tags/v}
# echo "GIT_TAG_VERSION=$GIT_TAG_VERSION" >> $GITHUB_ENV
# echo "Version from Git tag: $GIT_TAG_VERSION"
# - name: Citation version
# id: citation_version
# run: |
# # Parse the version from the CITATION.cff file
# CITATION_VERSION=$(grep '^version:' CITATION.cff | cut -d' ' -f2)
# echo "CITATION_VERSION=$CITATION_VERSION" >> $GITHUB_ENV
# echo "Version from CITATION.cff: $CITATION_VERSION"
# - name: Compare versions
# run: |
# if [ "$GIT_TAG_VERSION" != "$CITATION_VERSION" ]; then
# echo "Version mismatch: Git tag version is $GIT_TAG_VERSION, CITATION.cff version is $CITATION_VERSION"
# exit 1
# fi
- name: Build package
run: python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@release/v1
with:
verbose: true
# with:
# user: __token__
# password: ${{secrets.PYPI_API_TOKEN}}