We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8f4d0a commit 82e73acCopy full SHA for 82e73ac
.github/workflows/pr.yml
@@ -130,7 +130,11 @@ jobs:
130
GITHUB_TOKEN: ${{ secrets.RHDH_BOT_TOKEN }}
131
run: |
132
echo "Building PR ${{ github.event.pull_request.number }}"
133
- rsync -az trusted-scripts/* .lycheeignore lychee.toml pr-content/
+ rsync -az trusted-scripts/* pr-content/
134
+ # some files are new in main/1.10, so check if they exist before copying
135
+ for f in trusted-scripts/.lycheeignore trusted-scripts/lychee.toml; do
136
+ if [[ -f $f ]]; then rsync -az $f pr-content/; fi
137
+ done
138
touch pr-content/.lycheecache
139
cd pr-content
140
build/scripts/build-ccutil.sh -b "pr-${{ github.event.number }}"
0 commit comments