Skip to content

Commit

Permalink
🐛 Fix pipeline for testing .NET linter
Browse files Browse the repository at this point in the history
  • Loading branch information
hybloid authored and tiulpin committed Sep 18, 2024
1 parent 4663b3a commit 30eb621
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,13 @@ jobs:
git remote add origin https://github.com/JetBrains/code-analytics-examples.git
echo "test" > README.md
git add README.md
if [ -f ".keep" ]; then
while IFS= read -r file; do
git add "$file"
done < ".keep"
else
echo ".keep file not found, doing nothing."
fi
git commit -m "Initial commit"
QODANA_PR_SHA=$(git rev-parse HEAD)
echo "QODANA_PR_SHA=$QODANA_PR_SHA" >> $GITHUB_ENV
Expand Down

0 comments on commit 30eb621

Please sign in to comment.