-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (40 loc) · 966 Bytes
/
Copy pathrelease.yml
File metadata and controls
49 lines (40 loc) · 966 Bytes
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
name: Release
on:
push:
tags:
- "v*.*.*"
jobs:
build:
name: Build
uses: tmehnert/complate-cpp-for-python/.github/workflows/build.yml@main
publish-to-pypi:
name: Publish to PyPI
runs-on: ubuntu-20.04
needs: [ build ]
steps:
- uses: actions/download-artifact@v2
with:
name: dist
path: dist
- name: Upload to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
github-release:
name: Github Release
runs-on: ubuntu-latest
needs: [ build ]
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: actions/download-artifact@v2
with:
name: dist
path: dist
- name: GitHub Release
uses: softprops/action-gh-release@v1
with:
generate_release_notes: true
files: |
dist/*