Watch
2
0
Fork
You've already forked raylib-cs
0

Extract & copy windows lib

This commit is contained in:
Ben Parsons 2021-10-01 22:22:09 +10:00
commit cad91a0e2e

View file

@ -54,6 +54,25 @@ jobs:
tag: ${{ steps.get-tag.outputs.info }}
fileName: "*"
- name: extract win-x64
uses: montudor/action-zip@v1
with:
args: unzip -qq raylib-${{steps.get-tag.outputs.info}}_win64_wingw-w64.zip -d raylib-win64
- name: output zip dir
run: "ls -la raylib-win64"
- name: copy win-x64
uses: canastro/copy-file-action@master
with:
source: "raylib-win64/lib/raylib.dll"
target: "Raylib-cs/runtimes/win-x64/native/raylib.dll"
- name: output directory
run: "ls -la ."
- name: output native lib directory
run: "ls -la Raylib-cs/runtimes/win-x64/native/"