Skip to content

Commit

Permalink
Remove full debug from release binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
franciscoadasme committed Dec 17, 2024
1 parent 5621169 commit 8cb16b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ jobs:
mkdir bin
docker run --rm -it -v $(pwd):/workspace -w /workspace \
crystallang/crystal:latest-alpine \
crystal build --static --release --debug \
crystal build --static --release \
-o bin/moltiverse-${GITHUB_REF_SLUG}-linux-${ARCH} \
src/moltiverse.cr
- if: startsWith(matrix.os, 'macos')
name: Build binary (macOS)
run: |
mkdir bin
crystal build --release --debug \
crystal build --release \
-o bin/moltiverse-${GITHUB_REF_SLUG}-osx-${ARCH} \
src/moltiverse.cr
- name: Upload artifacts
Expand Down

0 comments on commit 8cb16b7

Please sign in to comment.