Skip to content

Commit

Permalink
Merge pull request #40 from nim-lang/pr_ship_dlls
Browse files Browse the repository at this point in the history
ship dlls
  • Loading branch information
ringabout authored Oct 2, 2024
2 parents 52a161f + 2a93515 commit fa25455
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
- name: Build binary
run: |
nimble install -y
nimble build -d:release -d:staticBuild
nimble build -d:release
dir bin/*
- name: Write release version
Expand Down Expand Up @@ -94,12 +94,15 @@ jobs:
- name: Build binary
run: |
nimble install -y
nimble build -d:release -d:staticBuild
nimble build -d:release
dir bin/*
mkdir zipfile
mkdir zipfile/choosenim
cp bin/choosenim.exe zipfile/choosenim/
cp scripts/runme.bat zipfile/
Invoke-WebRequest -Uri https://nim-lang.org/download/dlls.zip -OutFile dlls.zip
Expand-Archive -Force dlls.zip windlls
cp windlls/* zipfile/choosenim/
Compress-Archive -Path zipfile/* -Destination choosenim-windows.zip
- name: Write release version
Expand Down

0 comments on commit fa25455

Please sign in to comment.