Skip to content

Commit

Permalink
57
Browse files Browse the repository at this point in the history
  • Loading branch information
collinlucke committed Nov 29, 2024
1 parent 938eeef commit 7801b86
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
- name: Decode and Write SSL Certificates
run: |
echo "${{ secrets.SSL_CERT }}" | base64 --decode > certfile.cer
echo "${{ secrets.SSL_PRIVATE_KEY }}" | base64 --decode > keyfile.key
echo "${{ secrets.SSL_CERT_INTERMEDIATE }}" | base64 --decode > intermediate.cer
echo "${{ secrets.SSL_CERT_BASE64 }}" | base64 --decode > certfile.cer
echo "${{ secrets.SSL_PRIVATE_KEY_BASE64 }}" | base64 --decode > keyfile.key
echo "${{ secrets.SSL_CERT_INTERMEDIATE_BASE64 }}" | base64 --decode > intermediate.cer
echo "SSL_CERT_PATH=certfile.cer" >> $GITHUB_ENV
echo "SSL_KEY_PATH=keyfile.key" >> $GITHUB_ENV
echo "SSL_CA_PATH=intermediate.cer" >> $GITHUB_ENV
Expand Down

0 comments on commit 7801b86

Please sign in to comment.