We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 30f62bd + abbdd4d commit b32f0b5Copy full SHA for b32f0b5
.github/workflows/pytest-docs.yml
@@ -1,7 +1,16 @@
1
name: Build Docs
2
3
on:
4
- [release, workflow_dispatch]
+ push:
5
+ branches:
6
+ - main
7
+ tags:
8
+ - "v*"
9
+ pull_request:
10
11
12
+ release:
13
+ types: [published]
14
15
jobs:
16
build:
@@ -33,8 +42,8 @@ jobs:
33
42
run: |
34
43
cd docs_rst
35
44
make html
36
- - name: Detect changes
37
- if: ${{ !contains(github.ref, 'refs/heads/main') }}
45
+ - name: Detect changes on release
46
+ if: startsWith(github.head_ref, 'releases/')
38
47
id: changes
39
48
shell: bash
40
49
.github/workflows/release.yml
@@ -38,7 +38,6 @@ jobs:
run: pip install build
- name: Publish package
41
- if: contains(github.ref, 'refs/heads/main')
uses: pypa/gh-action-pypi-publish@release/v1.5
with:
user: __token__
0 commit comments