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 73cd4a5 commit 5b9bf26Copy full SHA for 5b9bf26
.github/workflows/ci-release.yml
@@ -4,6 +4,8 @@ on:
4
types: [published]
5
jobs:
6
build:
7
+ # Only non-pre-release builds trigger a release
8
+ if: "!github.event.release.prerelease"
9
name: Python Release Builder
10
runs-on: ubuntu-latest
11
steps:
.github/workflows/ci-snapshot.yml
@@ -1,12 +1,11 @@
1
name: Snapshot Builder
2
on:
3
- push:
- branches: [ main ]
- tags-ignore:
- - "[0-9]+.[0-9]+.[0-9]+"
- - "[0-9]+.[0-9]+.[0-9]+.[0-9]+"
+ release:
+ types: [published]
+ # Pre-release builds trigger a snapshot being created
+ if: "github.event.release.prerelease"
name: Python Snapshot Builder
12
0 commit comments