Skip to content

Commit 9ec05e1

Browse files
committed
fix: Add manifest.toml to packages
1 parent 8d6d8b2 commit 9ec05e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ jobs:
361361
mkdir -p release
362362
BINARY_PATH="target/${{ matrix.target }}/release/${{ steps.extract-binary.outputs.BINARY_NAME }}"
363363
cp $BINARY_PATH release/
364-
cp LICENSE install.sh README.md release/ || echo "LICENSE or README.md not found, skipping"
364+
cp LICENSE install.sh manifest.toml README.md release/ || echo "LICENSE or README.md not found, skipping"
365365
# Add version info file
366366
echo "Version: ${{ steps.extract-version.outputs.VERSION }}" > release/VERSION
367367
echo "Build Date: $(date -u +"%Y-%m-%dT%H:%M:%SZ")" >> release/VERSION
@@ -378,7 +378,7 @@ jobs:
378378
mkdir release
379379
BINARY_PATH="target/${{ matrix.target }}/release/${{ steps.extract-binary.outputs.BINARY_NAME }}${{ matrix.is_windows && '.exe' || '' }}"
380380
cp $BINARY_PATH release/
381-
cp LICENSE install.shREADME.md release/ || echo "LICENSE or README.md not found, skipping"
381+
cp LICENSE install.sh manifest.toml README.md release/ || echo "LICENSE or README.md not found, skipping"
382382
# Add version info file
383383
echo "Version: ${{ steps.extract-version.outputs.VERSION }}" > release/VERSION
384384
echo "Build Date: $(date -u +"%Y-%m-%dT%H:%M:%SZ")" >> release/VERSION

0 commit comments

Comments
 (0)