We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1022375 commit 9237dbbCopy full SHA for 9237dbb
.github/workflows/bump_version_and_tag.yml
@@ -12,6 +12,11 @@ on:
12
required: true
13
type: string
14
15
+permissions:
16
+ contents: write # to trigger the windows_build and python-publish workflows
17
+ # optionally:
18
+ # workflows: write
19
+
20
jobs:
21
bump-version:
22
if: github.ref == 'refs/heads/master'
.github/workflows/windows_build.yml
@@ -1,12 +1,12 @@
1
name: Windows Installer
2
3
on:
4
+ release:
5
+ types: [published]
6
+ workflow_dispatch:
7
push:
8
paths:
9
- '**/*.py' # Watch for changes in any Python files
- tags:
- - 'v*' # Trigger on version tags
- workflow_dispatch:
10
11
concurrency:
group: ci-${{github.workflow}}-${{ github.ref }}
0 commit comments