-
-
Notifications
You must be signed in to change notification settings - Fork 69
44 lines (33 loc) · 861 Bytes
/
deploy.yml
File metadata and controls
44 lines (33 loc) · 861 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
name: deploy
on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
jobs:
package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Build and Check Package
uses: hynek/build-and-inspect-python-package@v2.14
deploy:
needs: [package]
if: github.repository == 'pytest-dev/pytest-qt'
runs-on: ubuntu-latest
environment: deploy
permissions:
id-token: write # For PyPI trusted publishers.
contents: write # For release.
steps:
- uses: actions/checkout@v5
- name: Download Package
uses: actions/download-artifact@v6
with:
name: Packages
path: dist
- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@v1.13.0
- name: GitHub Release
uses: softprops/action-gh-release@v2
with:
files: dist/*