File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -54,18 +54,18 @@ jobs:
5454
5555 - name : Copy Install Scripts
5656 run : |
57- cp scripts/install.sh dist/install.sh || true
58- cp scripts/install.ps1 dist/install.ps1 || true
59- # Fallback if scripts are in top level or legacy location?
60- # Previous context showed dist/ install.sh existed in repo.
61- # Let's verify location. We will just cp everything in dist/ that exists.
57+ # Create dist folder if not exists
58+ mkdir -p dist
59+ # Copy install.sh if it exists (check root or scripts dir)
60+ if [ -f " install.sh" ]; then cp install.sh dist/; fi
61+ if [ -f "scripts/install.sh" ]; then cp scripts/install.sh dist/; fi
6262
6363 - name : Upload Release
6464 uses : softprops/action-gh-release@v1
6565 with :
6666 files : |
6767 dist/*
68- body_path : docs/v2.0 .0_RELEASE_NOTES.md
68+ body_path : docs/v2.1 .0_RELEASE_NOTES.md
6969 draft : false
7070 prerelease : false
7171 env :
You can’t perform that action at this time.
0 commit comments