all repos — min @ b00b8ca32907332398209dab50f74a693fdb8f86

A small but practical concatenative programming language.

Added upx action.
h3rald h3rald@h3rald.com
Sun, 23 Jul 2023 09:26:13 +0000
commit

b00b8ca32907332398209dab50f74a693fdb8f86

parent

86d0598a2561760ad1a53189af7209a12d86ba02

1 files changed, 15 insertions(+), 7 deletions(-)

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

@@ -68,14 +68,22 @@ - 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 (*nix) + - name: UPX + uses: svenstaro/upx-action@v2 + with: + files: | + min + args: --best + if: matrix.os == 'macos-latest' || matrix.os == 'ubuntu-latest' - # UPX compress (Windows) - - name: UPX (Windows) - run: upx --best min.exe + # UPX compress (Windows) + - name: UPX + uses: svenstaro/upx-action@v2 + with: + files: | + min.exe + args: --best if: matrix.os == 'windows-latest' # Retrieve ID and Name of the current (draft) release