Skip to content

Commit

Permalink
Ad-hoc signing for Mac release (#1529) #patch
Browse files Browse the repository at this point in the history
  • Loading branch information
IhateTrains authored Sep 24, 2023
1 parent 9f42e8d commit 16c513a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,16 @@ jobs:
global-json-file: global.json
- name: "Build backend"
working-directory: ImperatorToCK3
shell: bash
run: |
dotnet publish -p:PublishProfile=${{ matrix.build }} -c:Release --output:"../Publish/ImperatorToCK3"
elif [ "$RUNNER_OS" = "macOS" ]
then
echo "Signing binary..."
codesign --force -s - "../Publish/ImperatorToCK3/ImperatorToCK3Converter"
echo "Verifying signature..."
codesign -dv --verbose=4 "../Publish/ImperatorToCK3/ImperatorToCK3Converter"
fi
- name: "Save commit ID"
shell: bash
run: |
Expand Down
2 changes: 1 addition & 1 deletion Fronter.NET

0 comments on commit 16c513a

Please sign in to comment.