diff --git a/.forgejo/workflows/release.yaml b/.forgejo/workflows/release.yaml index de9e8d3..1a1fa59 100644 --- a/.forgejo/workflows/release.yaml +++ b/.forgejo/workflows/release.yaml @@ -69,7 +69,7 @@ jobs: with: args: > sh -c " - apk add --no-cache build-base musl-dev gcc g++ openssl-dev pkg-config && + apk add --no-cache build-base musl-dev gcc g++ openssl-dev && rustup target add x86_64-unknown-linux-gnu && cargo build --release --target x86_64-unknown-linux-gnu && mkdir -p release-artifacts && @@ -87,7 +87,7 @@ jobs: with: args: > sh -c " - apk add --no-cache build-base mingw-w64-gcc mingw-w64-headers mingw-w64-crt mingw-w64-winpthreads && + apk add --no-cache build-base mingw-w64 && rustup target add x86_64-pc-windows-gnu && cargo build --release --target x86_64-pc-windows-gnu && mkdir -p release-artifacts &&