Skip to content

Commit

Permalink
fix bug in cicd/scripts/build-release-archive.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
erratic-pattern committed Oct 13, 2023
1 parent e15dbfa commit 056206e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
packageVersion: ${{ needs.create-release.outputs.cargoPackageVersion }}
debRevision: ${{ needs.create-release.outputs.tagName }}
rpmSnapshot: ${{ github.sha }}
rustFlags: '-C debuginfo=2'
rustFlags: '-C debuginfo=2 -C strip=none'

test-release:
name: Test Release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/staging-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
packageVersion: ${{ needs.create-release.outputs.cargoPackageVersion }}
debRevision: ${{ github.sha }}
rpmSnapshot: ${{ github.sha }}
rustFlags: '-C debuginfo=2'
rustFlags: '-C debuginfo=2 -C strip=none'

test-release:
name: Test Release
Expand Down
2 changes: 1 addition & 1 deletion cicd/scripts/build-release-archive.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ mv "$src_completions_dir" "$dst_completions_dir"

cp README.md LICENSE "$ARCHIVE_NAME/"
cp -a "$dst_completions_dir" "$ARCHIVE_NAME/"
cp "target/$TARGET/$CARGO_PROFILE/$PROJECT_NAME"* "$ARCHIVE_NAME/"
cp "target/$TARGET/release/$PROJECT_NAME"* "$ARCHIVE_NAME/"

case $TARGET in
*windows*)
Expand Down

0 comments on commit 056206e

Please sign in to comment.