Skip to content

Commit

Permalink
ci: name collision ?
Browse files Browse the repository at this point in the history
  • Loading branch information
jnicoulaud-ledger committed Jun 20, 2024
1 parent b906694 commit 827fe20
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
continue-on-error: true
shell: bash
run: |
echo 'logs<<EOF' >> $GITHUB_OUTPUT
echo 'validation_output<<EOF' >> $GITHUB_OUTPUT
pipenv run validate_files >> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT
Expand All @@ -66,7 +66,7 @@ jobs:
Changes have some validation errors ❌
<details>
<summary>Validation logs</summary>
<pre>${{ steps.validation.outputs.logs }}</pre>
<pre>${{ steps.validation.outputs.validation_output }}</pre>
</details>
Please fix errors, you can run validation locally with:
```
Expand All @@ -84,5 +84,5 @@ jobs:
Changes have passed validation ✅
<details>
<summary>Validation logs</summary>
<pre>${{ steps.validation.outputs.logs }}</pre>
<pre>${{ steps.validation.outputs.validation_output }}</pre>
</details>

0 comments on commit 827fe20

Please sign in to comment.