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 52faaea commit 12ab196Copy full SHA for 12ab196
.github/workflows/details-check.yml
@@ -110,9 +110,11 @@ jobs:
110
run: |
111
git config --global user.email "actions@github.com"
112
git config --global user.name "GitHub Actions"
113
- git checkout -b details-outputs
+ git fetch origin details-outputs:details-outputs || git checkout --orphan details-outputs
114
+ git checkout details-outputs
115
git add *.txt || echo "No txt files to add"
116
git commit -m "Publish details outputs txt files" || echo "Nothing to commit"
117
+ git pull --rebase origin details-outputs || echo "Nothing to rebase"
118
git push origin details-outputs || echo "Nothing to push"
119
env:
120
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments