ci: submit pems
Some checks failed
ci/gh-actions/build / build-ubuntu-without-scanner (push) Has been cancelled
ci/gh-actions/guix / aarch64-linux-gnu (push) Has been cancelled
ci/gh-actions/guix / arm-linux-gnueabihf (push) Has been cancelled
ci/gh-actions/guix / cache-sources (push) Has been cancelled
ci/gh-actions/guix / arm64-apple-darwin (push) Has been cancelled
ci/gh-actions/guix / i686-linux-gnu (push) Has been cancelled
ci/gh-actions/guix / riscv64-linux-gnu (push) Has been cancelled
ci/gh-actions/guix / x86_64-apple-darwin (push) Has been cancelled
ci/gh-actions/guix / x86_64-linux-gnu.no-tor-bundle (push) Has been cancelled
ci/gh-actions/guix / x86_64-linux-gnu.pack (push) Has been cancelled
ci/gh-actions/guix / x86_64-linux-gnu (push) Has been cancelled
ci/gh-actions/guix / x86_64-w64-mingw32.installer (push) Has been cancelled
ci/gh-actions/guix / x86_64-w64-mingw32 (push) Has been cancelled
ci/gh-actions/guix / bundle-logs (push) Has been cancelled
ci/gh-actions/guix / codesigning (map[target:x86_64-w64-mingw32.installer]) (push) Has been cancelled
ci/gh-actions/guix / codesigning (map[target:x86_64-w64-mingw32]) (push) Has been cancelled

This commit is contained in:
tobtoht 2024-10-22 15:42:29 +02:00
parent 864ddac804
commit b3864b4883

View file

@ -149,3 +149,20 @@ jobs:
name: ${{ matrix.toolchain.target }}.pem
path: |
codesigning/${{ matrix.toolchain.target }}-${{github.ref_name}}.pem
- uses: actions/checkout@v4
with:
repository: tobtoht/feather-sigs
path: feather-sigs
ref: main
token: ${{ secrets.FEATHER_SIGS_PAT }}
- name: "submit signatures"
run: |
mkdir -p feather-sigs/codesigning/${{github.ref_name}}/
cp codesigning/*.pem feather-sigs/codesigning/${{github.ref_name}}/
cd feather-sigs
git checkout -b ${{github.ref_name}}-${{ matrix.toolchain.target }}
git configure --global user.name "GitHub"
git configure --global user.email ""
git add add codesigning
git commit -m "add codesignature for ${{github.ref_name}}/${{ matrix.toolchain.target }}"
git push origin ${{github.ref_name}}-${{ matrix.toolchain.target }}