all repos — min @ ba0e5f9d153bad53f15d6181239a217c83252174

A small but practical concatenative programming language.

Rebuilt smaller openssl libs, added upx to workflow.
h3rald h3rald@h3rald.com
Sun, 23 Jul 2023 04:09:22 +0000
commit

ba0e5f9d153bad53f15d6181239a217c83252174

parent

9a8876a4e551cc91bf65f3e1f478476888f9de8b

M .github/workflows/add-artifacts-to-current-release.yml.github/workflows/add-artifacts-to-current-release.yml

@@ -68,6 +68,16 @@ - name: Build (macOS, Windows)

run: nimble build -d:release -d:ssl -d:useOpenSsl3 --opt:size if: matrix.os == 'macos-latest' || matrix.os == 'windows-latest' + # UPX compress (Linux/macOS) + - name: UPX (Linux/macOS) + run: upx --best min + if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' + + # UPX compress (Windows) + - name: UPX (Windows) + run: upx --best min.exe + if: matrix.os == 'windows-latest' + # Retrieve ID and Name of the current (draft) release - name: "Get current release" id: current-release