Skip to content

Commit

Permalink
Modified: .github/workflows/build-and-release.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
quinneden committed Jan 3, 2025
1 parent 9ef38c0 commit 92cf434
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build-and-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Decrypt Secrets
run: base64 -d <<< ${{ secrets.GIT_CRYPT_KEY }} | git-crypt unlock -
run: |
sudo apt-get update && sudo apt-get install -y git-crypt
base64 -d <<< ${{ secrets.GIT_CRYPT_KEY }} | git-crypt unlock -
- uses: docker/setup-qemu-action@v3
with:
platforms: arm64
Expand Down

0 comments on commit 92cf434

Please sign in to comment.