-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (41 loc) · 1.08 KB
/
deploy.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
54
# Deploy tagged releases.
name: Deploy Release
on:
push:
tags:
- '*'
# This is for debugging.
# on:
# push:
# branches: [ master ]
# pull_request:
# branches: [ master ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.TWINE_TOKEN }}
jobs:
wheels:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install Dependencies
run: python3 -m pip install build twine numpy
- name: Install Package
run: python3 -m pip install .
- name: Run Simple Test
run: python3 -c 'import pshmem.test; pshmem.test.run()'
- name: Build source package
run: rm -rf dist && python3 -m build --sdist
- name: Build wheels
run: python3 -m build --wheel
- name: Upload to PyPI
run: |
python -m twine upload dist/*.tar.gz && python -m twine upload dist/pshmem*.whl