M .github/workflows/add-artifacts-to-current-releases.yml => .github/workflows/add-artifacts-to-current-releases.yml +2 -2
@@ 65,12 65,12 @@ jobs:
# Build for Linux
- name: Build (Linux)
- run: nimble build -d:release --gcc.exe:musl-gcc --gcc.linkerexe:musl-gcc --mm:refc --opt:size
+ run: nimble build -y -d:release --gcc.exe:musl-gcc --gcc.linkerexe:musl-gcc --mm:refc --opt:size
if: matrix.os == 'ubuntu-latest'
# Build for macOS/Windows
- name: Build (macOS, Windows)
- run: nimble build -d:release --opt:size --mm:refc
+ run: nimble build -y -d:release --opt:size --mm:refc
if: matrix.os == 'macos-latest' || matrix.os == 'windows-latest'
# UPX compress (*nix)
M .github/workflows/ci.yml => .github/workflows/ci.yml +1 -1
@@ 38,7 38,7 @@ jobs:
sh init.sh -y
- name: Build
- run: nimble build --mm:refc -d:release --opt:size --gcc.exe:musl-gcc --gcc.linkerexe:musl-gcc --cpu:amd64 --os:linux
+ run: nimble build -y --mm:refc -d:release --opt:size --gcc.exe:musl-gcc --gcc.linkerexe:musl-gcc --cpu:amd64 --os:linux
- name: Build Site
run: |