-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (50 loc) · 1.36 KB
/
deploy.yml
File metadata and controls
63 lines (50 loc) · 1.36 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
52
53
54
55
56
57
58
59
60
61
62
63
# Deploy tagged releases.
name: Deploy Release
on:
workflow_dispatch:
release:
types: [ published ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
wheels:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
fetch-tags: true
- name: Set up Python 3.12
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install Dependencies
run: python3 -m pip install build 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
- uses: actions/upload-artifact@v6
with:
name: pshmem
path: ./dist/pshmem*.whl
upload_pypi:
needs: wheels
runs-on: ubuntu-latest
permissions:
id-token: write
if: github.event_name == 'release' && github.event.action == 'published'
steps:
- uses: actions/download-artifact@v8
with:
# Unpacks all artifacts into dist/
pattern: pshmem*
path: dist
merge-multiple: true
- uses: pypa/gh-action-pypi-publish@release/v1