Skip to content

Commit

Permalink
ci: submit pems
Browse files Browse the repository at this point in the history
  • Loading branch information
tobtoht committed Oct 22, 2024
1 parent 864ddac commit b3864b4
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/guix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

0 comments on commit b3864b4

Please sign in to comment.