We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 587031d commit be1ad14Copy full SHA for be1ad14
1 file changed
.github/workflows/release.yml
@@ -113,7 +113,7 @@ jobs:
113
run: cargo build --release --target ${{ matrix.target }} --locked
114
115
# 7) macOS code signing
116
- - name: Import Developer ID certificate
+ - name: Import Distribution certificate
117
if: runner.os == 'macOS'
118
uses: apple-actions/import-codesign-certs@v3
119
with:
@@ -125,7 +125,7 @@ jobs:
125
run: |
126
BIN=target/${{ matrix.target }}/release/${{ matrix.artifact_name }}
127
codesign --force --timestamp --options runtime \
128
- --sign "Developer ID Application" "$BIN"
+ --sign "Distribution" "$BIN"
129
130
# 8) Package binaries
131
- name: Package Linux binary (tar.gz)
0 commit comments