Skip to content

Commit

Permalink
ci: properly reference secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
goldmann committed Jan 26, 2024
1 parent 14f966a commit f26d64e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
- name: Populate certificates
run: |
mkdir certs
echo $IT_ROOT_CA_2022 > certs/2022-IT-Root-CA.pem
echo ${{ secrets.IT_ROOT_CA_2022 }} > certs/2022-IT-Root-CA.pem
- name: Build Image
id: build-image
uses: redhat-actions/buildah-build@v2
Expand Down Expand Up @@ -113,9 +113,9 @@ jobs:
- name: Populate certificates
run: |
mkdir certs
echo $IT_ROOT_CA_2022 > certs/2022-IT-Root-CA.pem
echo $IT_ROOT_CA_2015 > certs/2015-IT-Root-CA.pem
echo $CA_CHAIN > rhcs-ca-chain-2022-cross-signed-2015.crt
echo ${{ secrets.IT_ROOT_CA_2022 }} > certs/2022-IT-Root-CA.pem
echo ${{ secrets.IT_ROOT_CA_2015 }} > certs/2015-IT-Root-CA.pem
echo ${{ secrets.CA_CHAIN }} > certs/rhcs-ca-chain-2022-cross-signed-2015.crt
- name: Download CLI
uses: actions/download-artifact@v4
with:
Expand Down

0 comments on commit f26d64e

Please sign in to comment.