Skip to content

Commit

Permalink
Merge pull request #119 from perftool-incubator/dev-kmr
Browse files Browse the repository at this point in the history
bugfix: copy & paste error
  • Loading branch information
k-rister authored Jun 12, 2024
2 parents 6bcf0f8 + 2a2528a commit edebfa4
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 edebfa4

Please sign in to comment.