-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (34 loc) · 1.21 KB
/
deploy_release.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
name: Deploy release
on:
push:
tags: # run only on new tags that follow semver MAJOR.MINOR.PATCH
- '[0-9]+.[0-9]+.[0-9]+'
jobs:
deploy-release:
name: Deploy release from tag
runs-on: ubuntu-latest
steps:
- name: Checkout repo with submodules
uses: actions/checkout@v3
with:
submodules: 'recursive'
fetch-depth: 0 # tags are required for versioneer to determine the version
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Build wheel
run: |
python -m pip install --upgrade build
python -m build
- name: Upload wheel and source distributions to PyPI
run: |
python -m pip install twine
ls -1 dist
python -m twine upload --u __token__ -p ${{ secrets.PYPI_TOKEN }} --skip-existing dist/*
- name: Publish wheel and source distributions as a GitHub release
run: |
python -m pip install "githubrelease>=1.5.9"
githubrelease --github-token ${{ secrets.GH_TOKEN }} release exabiome/gtnet \
create ${{ github.ref_name }} --name ${{ github.ref_name }} \
--publish dist/*