We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31ce56b commit 52faaeaCopy full SHA for 52faaea
.github/workflows/details-check.yml
@@ -110,10 +110,9 @@ jobs:
110
run: |
111
git config --global user.email "actions@github.com"
112
git config --global user.name "GitHub Actions"
113
- branch_name="details-outputs"
114
- git checkout $branch_name || git checkout -b $branch_name
115
- git add *.txt
+ git checkout -b details-outputs
+ git add *.txt || echo "No txt files to add"
116
git commit -m "Publish details outputs txt files" || echo "Nothing to commit"
117
- git push origin $branch_name || echo "Nothing to push"
+ git push origin details-outputs || echo "Nothing to push"
118
env:
119
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments