fix conditional check on restore-args (#4104)

#### Does this PR need a docs update or release note?

- [x]  No

#### Type of change

- [x] 🐛 Bugfix
- [x] 🤖 Supportability/Tests

#### Test Plan

- [x] 💚 E2E
This commit is contained in:
Keepers 2023-08-24 15:21:52 -06:00 committed by GitHub
parent f0422431bc
commit 4a5a2a240f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -56,7 +56,7 @@ runs:
tee $GITHUB_OUTPUT tee $GITHUB_OUTPUT
- name: Restore ${{ inputs.service }} ${{ inputs.kind }} - name: Restore ${{ inputs.service }} ${{ inputs.kind }}
if: inputs.restore != "" if: ${{ inputs.restore-args != "" }}
id: restore id: restore
shell: bash shell: bash
working-directory: src working-directory: src
@ -78,7 +78,7 @@ runs:
cat /tmp/corsologs cat /tmp/corsologs
- name: Check restore ${{ inputs.service }} ${{ inputs.kind }} - name: Check restore ${{ inputs.service }} ${{ inputs.kind }}
if: ${{ inputs.restore != "" }} if: ${{ inputs.restore-args != "" }}
shell: bash shell: bash
working-directory: src working-directory: src
env: env: