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 e588a63 commit 93fd522Copy full SHA for 93fd522
.github/workflows/build.yaml
@@ -4,9 +4,6 @@ on:
4
push:
5
branches:
6
main
7
- release:
8
- types:
9
- - published
10
11
jobs:
12
build_wheels:
@@ -34,7 +31,7 @@ jobs:
34
31
needs: build_wheels
35
32
runs-on: ubuntu-18.04
36
33
37
- if: github.event_name == 'release' && github.event.action == 'published'
+ if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
38
39
steps:
40
- uses: actions/download-artifact@v3
.github/workflows/tests_full.yml
@@ -11,6 +11,9 @@ on:
build:
13
14
+
15
+ if: startsWith(github.ref, 'refs/tags/v') != true
16
17
18
- uses: actions/checkout@v1
19
- name: Set up Python 3.6
0 commit comments