Added docs zip until lib gen PR gets merged #33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows - Release Examples | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
windows-prerelease: | |
name: Windows - Release Examples | |
runs-on: windows-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Download source | |
uses: actions/checkout@v2 | |
- name: Install Crystal | |
run: | | |
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser | |
irm get.scoop.sh -outfile 'install.ps1' | |
.\install.ps1 -RunAsAdmin | |
echo ("PATH=" + $env:PATH + ";" + $home + "\scoop\shims") >> $env:GITHUB_ENV | |
scoop bucket add crystal-preview https://github.com/neatorobito/scoop-crystal | |
scoop install vs_2022_cpp_build_tools | |
scoop install crystal | |
- name: shards install | |
run: shards install | |
- name: Setup VS Dev Environment | |
uses: seanmiddleditch/gha-setup-vsdevenv@v4 | |
- name: raylib-cr post-install | |
run: | | |
powershell rsrc/native/windows/install-ga.ps1 | |
echo ("LIB=" + $env:LIB + ";" + $pwd + "\libs") >> $env:GITHUB_ENV | |
echo ("PATH=" + $env:PATH + ";" + $pwd + "\libs") >> $env:GITHUB_ENV | |
- name: Build examples | |
run: | | |
crystal run rsrc/build-examples/build.cr | |
Copy-Item -Path "libs\*.dll" -Destination "examples\_build" -Recurse -Force | |
- name: Zip | |
run: Compress-Archive -Path "examples\_build\*" -DestinationPath windows-examples.zip | |
- uses: ncipollo/release-action@v1 | |
with: | |
allowUpdates: true | |
tag: "latest" | |
prerelease: true | |
artifacts: "windows-examples.zip" |