Fixes.
h3rald h3rald@h3rald.com
Fri, 01 Sep 2023 15:11:42 +0000
2 files changed,
3 insertions(+),
3 deletions(-)
M
.github/workflows/add-artifacts-to-current-releases.yml
→
.github/workflows/add-artifacts-to-current-releases.yml
@@ -65,12 +65,12 @@ sh init.sh -y
# 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
@@ -38,7 +38,7 @@ curl https://nim-lang.org/choosenim/init.sh -sSf > init.sh
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: |