diff options
| author | Ellie Huxtable <ellie@elliehuxtable.com> | 2024-01-09 11:49:00 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-09 11:49:00 +0000 |
| commit | 2b94f05735fe83db741370078ebfb44fa92b6907 (patch) | |
| tree | 62f23ececa3e667c0dcba9aed6af5589d8d9b39c /.github/workflows/release.yaml | |
| parent | fix(shell): fix incorrect timing of child shells (#1510) (diff) | |
| download | atuin-2b94f05735fe83db741370078ebfb44fa92b6907.zip | |
fix: disable musl deb building (#1525)
It never worked, and broke release building. I don't think we need musl
debs, but if so ensure they don't break install scripts
Resolve #1500
Diffstat (limited to '.github/workflows/release.yaml')
| -rw-r--r-- | .github/workflows/release.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 89eadeb9..d1e12483 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -178,7 +178,7 @@ jobs: - name: Create Debian package id: debian-package shell: bash - if: startsWith(matrix.job.os, 'ubuntu') + if: startsWith(matrix.job.os, 'ubuntu') && endsWith(matrix.job.target, 'gnu') run: | cargo install cargo-deb cargo deb --deb-revision="" -p atuin |
