all repos — hastysite @ 7f08e8ac7366787b752d984720acac52790e6769

A high-performance static site generator.

Fixes.
h3rald h3rald@h3rald.com
Fri, 01 Sep 2023 15:11:42 +0000
commit

7f08e8ac7366787b752d984720acac52790e6769

parent

d6756cd7254bf0425cece9fc29b97ecad1cfc682

2 files changed, 3 insertions(+), 3 deletions(-)

jump to
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: |