Skip to content

Commit 6529e52

Browse files
authored
chore: fix cross compile and remove builds that aren't needed (#439)
1 parent 8ee36de commit 6529e52

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/release.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -89,17 +89,17 @@ jobs:
8989
os: ubuntu-latest
9090
cross: true
9191
release_suffix: aarch64-linux
92-
- target: i686-unknown-linux-gnu
93-
os: ubuntu-latest
94-
cross: true
95-
release_suffix: i686-linux
92+
# - target: i686-unknown-linux-gnu
93+
# os: ubuntu-latest
94+
# cross: true
95+
# release_suffix: i686-linux
9696
# Windows
9797
- target: x86_64-pc-windows-msvc
9898
os: windows-2022
9999
release_suffix: x86_64-windows
100-
- target: i686-pc-windows-msvc
101-
os: windows-2022
102-
release_suffix: i686-windows
100+
# - target: i686-pc-windows-msvc
101+
# os: windows-2022
102+
# release_suffix: i686-windows
103103
# macOS
104104
- target: aarch64-apple-darwin
105105
os: macos-12
@@ -176,13 +176,13 @@ jobs:
176176
- name: Rename
177177
working-directory: ${{ github.workspace }}
178178
run: |-
179-
mv dist/app/dma* dist/app/dma-${{ matrix.job.release_suffix }}
179+
mv dist/binary/dma* dist/binary/dma-${{ matrix.job.release_suffix }}
180180
181181
- name: Upload built binary package
182182
uses: actions/upload-artifact@v4
183183
with:
184184
name: binaries-${{ matrix.job.release_suffix }}
185-
path: dist/app/*
185+
path: dist/binary/*
186186
if-no-files-found: error
187187

188188
publish:

0 commit comments

Comments
 (0)