Skip to content

Commit e276aa8

Browse files
committed
fix(ci): point release workflow to v2.1.0 artifacts
1 parent 565583d commit e276aa8

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)