-
-
Notifications
You must be signed in to change notification settings - Fork 16
44 lines (36 loc) · 960 Bytes
/
vesuvius.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
name: Publish Vesuvius to PyPI
on:
push:
tags:
- 'vesuvius-v*'
workflow_dispatch:
jobs:
publish:
name: Publish to PyPI
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
defaults:
run:
working-directory: ./vesuvius
steps:
- name: Check out the code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python environment
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install build dependencies
run: |
python -m pip install --upgrade pip setuptools wheel build
- name: Build the package
run: |
python -m build --sdist --wheel
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: vesuvius/dist
password: ${{ secrets.PYPI_API_TOKEN }}