You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/build-wheels.yml
+12-13Lines changed: 12 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -5,12 +5,12 @@ on:
5
5
push:
6
6
branches:
7
7
- release-*
8
-
- '*wheel*'# must quote since "*" is a YAML reserved character; we want a string
8
+
- "*wheel*"# must quote since "*" is a YAML reserved character; we want a string
9
9
tags:
10
-
- '*'
10
+
- "*"
11
11
pull_request:
12
12
branches:
13
-
- '*wheel*'# must quote since "*" is a YAML reserved character; we want a string
13
+
- "*wheel*"# must quote since "*" is a YAML reserved character; we want a string
14
14
15
15
jobs:
16
16
generate_backwards_compatibility_data:
@@ -19,7 +19,7 @@ jobs:
19
19
steps:
20
20
- name: Checkout code
21
21
uses: actions/checkout@v3
22
-
22
+
23
23
# Based on https://github.com/TileDB-Inc/conda-forge-nightly-controller/blob/51519a0f8340b32cf737fcb59b76c6a91c42dc47/.github/workflows/activity.yml#L19C10-L19C10
0 commit comments