@cryptotaxi247 / netdata-1 / commits / 28a589cfe

Fix key identification for DEB package signing.

Austin S. Hemmelgarn committed Jun 26, 2024 at 07:07 UTC 28a589cfefa45a5cef1ed16a89a74d27a15f288f
2 files changed +2 -2
.github/workflows/packaging.yml
+1 -1
@@ -320,7 +320,7 @@ jobs:
320 id: sign-deb
321 if: needs.file-check.outputs.run == 'true' && matrix.format == 'deb' && github.event_name != 'pull_request'
322 shell: bash
323 - run: .github/scripts/deb-sign.sh artifacts Netdatabot
323 + run: .github/scripts/deb-sign.sh artifacts ${{ steps.import-keys.outputs.fingerprint }}
324 - name: Upload to packages2.netdata.cloud
325 id: package2-upload
326 if: github.event_name == 'workflow_dispatch' && github.repository == 'netdata/netdata' && needs.file-check.outputs.run == 'true'
.github/workflows/repoconfig-packages.yml
+1 -1
@@ -142,7 +142,7 @@ jobs:
142 id: sign-deb
143 if: matrix.format == 'deb' && github.event_name != 'pull_request'
144 shell: bash
145 - run: .github/scripts/deb-sign.sh packaging/repoconfig/artifacts Netdatabot
145 + run: .github/scripts/deb-sign.sh packaging/repoconfig/artifacts ${{ steps.import-keys.outputs.fingerprint }}
146 - name: Upload to packages2.netdata.cloud
147 id: package2-upload
148 if: github.event_name != 'pull_request' && github.repository == 'netdata/netdata'