Skip to content

Commit 1f63712

Browse files
committed
fix missing ref + macos signing plist
1 parent a76a474 commit 1f63712

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

.github/workflows/release-bins.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ jobs:
3535
id-token: write
3636
steps:
3737
- uses: actions/checkout@v4
38+
with:
39+
ref: ${{ github.ref }}
3840
- uses: nixbuild/nix-quick-install-action@v30
3941
with:
4042
nix_conf: ${{ env.nix_conf }}

.github/workflows/release-container.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ jobs:
2323
id-token: write
2424
steps:
2525
- uses: actions/checkout@v4
26+
with:
27+
ref: ${{ github.ref }}
2628

2729
# Extract needed info for use with the other steps
2830
- id: repo-meta

macos-entitlements.plist

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>com.apple.security.cs.allow-jit</key>
6+
<true/>
7+
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
8+
<true/>
9+
<key>com.apple.security.cs.disable-executable-page-protection</key>
10+
<true/>
11+
<key>com.apple.security.cs.allow-dyld-environment-variables</key>
12+
<true/>
13+
<key>com.apple.security.cs.disable-library-validation</key>
14+
<true/>
15+
</dict>
16+
</plist>

0 commit comments

Comments
 (0)