Skip to content

Commit

Permalink
fix yaml?
Browse files Browse the repository at this point in the history
  • Loading branch information
jakedoublev committed Sep 6, 2024
1 parent 8ca32c8 commit a9537a7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/end-to-end.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ jobs:
BATS_LIB_PATH: /usr/lib
# Terminal width for testing printed output
TEST_TERMINAL_WIDTH: 200
PLATFORM_IS_RUNNING: '${{ inputs.platform-is-running }}'
PLATFORM_IS_RUNNING: ${{ inputs.platform-is-running }}
# Ternaries to handle empty inputs (a PR within otdfctl), or remote call scenario
PLATFORM_REF: '${{ inputs.platform-ref == '' && 'main' || inputs.platform-ref }}'
OTDFCTL_REF: '${{ inputs.otdfctl-ref == '' && github.event.pull_request.head.sha || inputs.otdfctl-ref }}'
PLATFORM_REF: ${{ inputs.platform-ref == '' && 'main' || inputs.platform-ref }}
OTDFCTL_REF: ${{ inputs.otdfctl-ref == '' && github.event.pull_request.head.sha || inputs.otdfctl-ref }}
steps:
- name: Check out otdfctl CLI
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
Expand Down

0 comments on commit a9537a7

Please sign in to comment.