Skip to content

Commit

Permalink
bugfix: copy & paste error
Browse files Browse the repository at this point in the history
  • Loading branch information
k-rister committed Jun 11, 2024
1 parent 6bcf0f8 commit 2a2528a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/benchmark-crucible-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -205,12 +205,12 @@ jobs:
- name: import ci secret
env:
CLIENT_SERVER_REGISTRY_AUTH_SECRET: ${{ secrets.registry_auth != '' && secrets.registry_auth || secrets.ci_registry_auth }}
if: ${{ needs.gen-params.outputs.build_controller == 'yes' && env.CLIENT_SERVER_REGISTRY_AUTH_SECRET != '' }}
if: ${{ env.CLIENT_SERVER_REGISTRY_AUTH_SECRET != '' }}
run: sudo bash -c "echo \"$CLIENT_SERVER_REGISTRY_AUTH_SECRET\" > /root/crucible-ci-engines-token.json"
- name: import production secret
env:
CLIENT_SERVER_REGISTRY_AUTH_SECRET: ${{ secrets.production_registry_auth }}
if: ${{ needs.gen-params.outputs.build_controller == 'yes' && env.CLIENT_SERVER_REGISTRY_AUTH_SECRET != '' }}
if: ${{ env.CLIENT_SERVER_REGISTRY_AUTH_SECRET != '' }}
run: sudo bash -c "echo \"$CLIENT_SERVER_REGISTRY_AUTH_SECRET\" > /root/crucible-production-engines-token.json"

- name: run crucible-ci->integration-tests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/core-crucible-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -353,12 +353,12 @@ jobs:
- name: import ci secret
env:
CLIENT_SERVER_REGISTRY_AUTH_SECRET: ${{ secrets.registry_auth != '' && secrets.registry_auth || secrets.ci_registry_auth }}
if: ${{ needs.gen-params.outputs.build_controller == 'yes' && env.CLIENT_SERVER_REGISTRY_AUTH_SECRET != '' }}
if: ${{ env.CLIENT_SERVER_REGISTRY_AUTH_SECRET != '' }}
run: sudo bash -c "echo \"$CLIENT_SERVER_REGISTRY_AUTH_SECRET\" > /root/crucible-ci-engines-token.json"
- name: import production secret
env:
CLIENT_SERVER_REGISTRY_AUTH_SECRET: ${{ secrets.production_registry_auth }}
if: ${{ needs.gen-params.outputs.build_controller == 'yes' && env.CLIENT_SERVER_REGISTRY_AUTH_SECRET != '' }}
if: ${{ env.CLIENT_SERVER_REGISTRY_AUTH_SECRET != '' }}
run: sudo bash -c "echo \"$CLIENT_SERVER_REGISTRY_AUTH_SECRET\" > /root/crucible-production-engines-token.json"

- name: run crucible-ci->integration-tests
Expand Down

0 comments on commit 2a2528a

Please sign in to comment.