Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
lloeki committed Jun 27, 2024
1 parent 53dda2f commit 159ccd5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/unit-test-appraisal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
spec:
- ${{ inputs.spec }}
engine:
- name: $${ inputs.engine_name }}
version: $${ inputs.engine_version }}
- name: ${{ inputs.engine_name }}
version: ${{ inputs.engine_version }}
appraisal:
- ${{ inputs.appraisal }}
env:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/unit-test-engine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Compute matrix
id: matrix
run: |
matrix="$(ruby matrix.rb --json appraisals spec:#{{ inputs.spec }} engine.name:${{ inputs.engine_name }} engine.version:${{ inputs.engine_version }})"
matrix="$(ruby matrix.rb --json appraisals spec:${{ inputs.spec }} engine.name:${{ inputs.engine_name }} engine.version:${{ inputs.engine_version }})"
echo "${matrix}" | ruby -rjson -0777 -ne 'puts JSON.pretty_generate JSON.parse($_)'
echo "matrix=${matrix}" >> $GITHUB_OUTPUT
Expand All @@ -39,8 +39,8 @@ jobs:
spec:
- ${{ inputs.spec }}
engine:
- name: $${ inputs.engine_name }}
version: $${ inputs.engine_version }}
- name: ${{ inputs.engine_name }}
version: ${{ inputs.engine_version }}
appraisal: ${{ fromJSON(needs.matrix.outputs.matrix) }}
uses: ./.github/workflows/unit-test-appraisal.yml
with:
Expand Down

0 comments on commit 159ccd5

Please sign in to comment.