forked from intrepidcs/python_ics
-
Notifications
You must be signed in to change notification settings - Fork 1
51 lines (42 loc) · 1.33 KB
/
sdist.yml
File metadata and controls
51 lines (42 loc) · 1.33 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
name: SDist
on: [push, pull_request]
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04,]
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0 # needed for history/tags
# Used to host cibuildwheel
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Get python_ics version
uses: mtkennerly/dunamai-action@v1
with:
env-var: PYTHON_ICS_VERSION
args: --format "v{base}-{commit}-{timestamp}"
- name: Print python_ics version
run: echo $PYTHON_ICS_VERSION
- name: Install requirements for sdist building
run: python -m pip install -r requirements.txt
- name: Compiling sdist
run: python setup.py sdist
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: python_ics-sdist-${{ matrix.os }}-${{ env.PYTHON_ICS_VERSION }}
path: ./dist/*.tar.gz
if-no-files-found: error
- name: Download artifacts
uses: actions/download-artifact@v4
with:
pattern: python_ics-sdist-*
merge-multiple: true
path: ./dist/