We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 020850e commit 92ef52fCopy full SHA for 92ef52f
.github/workflows/release.yml
@@ -2,6 +2,8 @@ name: Release
2
3
on:
4
push:
5
+ branches:
6
+ - "main"
7
tags:
8
- "v*"
9
workflow_dispatch:
@@ -21,7 +23,8 @@ jobs:
21
23
include:
22
24
- os: ubuntu-latest
25
target: x86_64-unknown-linux-gnu
- - os: macos-13
26
+ # Build both macOS targets on macos-14 to avoid flaky macos-13 runner availability.
27
+ - os: macos-14
28
target: x86_64-apple-darwin
29
- os: macos-14
30
target: aarch64-apple-darwin
src/types.rs
@@ -464,5 +464,4 @@ impl TableLayout {
464
Self::Full => 56,
465
}
466
467
-
468
0 commit comments