Skip to content

Commit fb08fe9

Browse files
EliEli
authored andcommitted
Simple fix to the "on" trigger in conda-build that is less surgical but intended to work on tags.
1 parent 6dd703c commit fb08fe9

2 files changed

Lines changed: 4 additions & 22 deletions

File tree

.github/workflows/build_sphinx.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,9 @@ name: "Sphinx: Render docs"
44
on:
55
push:
66
branches: ["main", "master"]
7-
paths:
8-
- "docsrc/**"
9-
- "schimpy/**"
10-
- "scripts/install_docs_extras.py"
11-
- "pyproject.toml"
12-
- ".github/workflows/build_sphinx.yml"
7+
tags:
8+
- 'v*' # v1, v1.2, v1.2.3, v2025.09.04, etc.
9+
- '[0-9]*' # 1, 1.2, 1.2.3, 2025.09.04, etc.
1310
workflow_dispatch:
1411

1512
permissions:

.github/workflows/python-package-conda.yml

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,7 @@ on:
66
branches: ["main", "master"]
77
tags:
88
- 'v*' # v1, v1.2, v1.2.3, v2025.09.04, etc.
9-
- '[0-9]*' # 1, 1.2, 1.2.3, 2025.09.04, etc.
10-
paths:
11-
- "conda.recipe/**"
12-
- ".github/workflows/python-package-conda.yml"
13-
- "pyproject.toml"
14-
- "schimpy/**"
15-
- "scripts/**"
16-
- "tests/**"
17-
pull_request:
18-
paths:
19-
- "conda.recipe/**"
20-
- ".github/workflows/python-package-conda.yml"
21-
- "pyproject.toml"
22-
- "schimpy/**"
23-
- "scripts/**"
24-
- "tests/**"
9+
- '[0-9]*' # 1, 1.2, 1.2.3, 2025.09.04, etc.
2510
workflow_dispatch:
2611

2712
concurrency:

0 commit comments

Comments
 (0)