Remove some of the logging steps
This commit is contained in:
parent
782688e27f
commit
d0ce396de7
1 changed files with 0 additions and 15 deletions
15
.github/workflows/build.yml
vendored
15
.github/workflows/build.yml
vendored
|
|
@ -31,12 +31,6 @@ jobs:
|
||||||
- name: Download Repo
|
- name: Download Repo
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: ls repo
|
|
||||||
run: "ls -la ."
|
|
||||||
|
|
||||||
- name: cat app.config
|
|
||||||
run: "cat ./app.config"
|
|
||||||
|
|
||||||
- id: get-tag
|
- id: get-tag
|
||||||
name: Get Target Raylib Version
|
name: Get Target Raylib Version
|
||||||
uses: mavrosxristoforos/get-xml-info@1.0
|
uses: mavrosxristoforos/get-xml-info@1.0
|
||||||
|
|
@ -79,9 +73,6 @@ jobs:
|
||||||
- name: extract linux-x64
|
- name: extract linux-x64
|
||||||
run: mkdir -p raylib-linux64 && tar -xvf raylib-${{steps.get-tag.outputs.info}}_linux_amd64.tar.gz -C raylib-linux64
|
run: mkdir -p raylib-linux64 && tar -xvf raylib-${{steps.get-tag.outputs.info}}_linux_amd64.tar.gz -C raylib-linux64
|
||||||
|
|
||||||
- name: output zip dir
|
|
||||||
run: "ls -la raylib-linux64"
|
|
||||||
|
|
||||||
- name: copy linux-x64
|
- name: copy linux-x64
|
||||||
uses: canastro/copy-file-action@master
|
uses: canastro/copy-file-action@master
|
||||||
with:
|
with:
|
||||||
|
|
@ -91,9 +82,6 @@ jobs:
|
||||||
- name: extract osx-x64
|
- name: extract osx-x64
|
||||||
run: mkdir -p raylib-osx64 && tar -xvf raylib-${{steps.get-tag.outputs.info}}_macos.tar.gz -C raylib-osx64
|
run: mkdir -p raylib-osx64 && tar -xvf raylib-${{steps.get-tag.outputs.info}}_macos.tar.gz -C raylib-osx64
|
||||||
|
|
||||||
- name: output zip dir
|
|
||||||
run: "ls -la raylib-osx64"
|
|
||||||
|
|
||||||
- name: copy osx-x64
|
- name: copy osx-x64
|
||||||
uses: canastro/copy-file-action@master
|
uses: canastro/copy-file-action@master
|
||||||
with:
|
with:
|
||||||
|
|
@ -103,9 +91,6 @@ jobs:
|
||||||
- name: output directory
|
- name: output directory
|
||||||
run: "ls -la ."
|
run: "ls -la ."
|
||||||
|
|
||||||
- name: output native lib directory
|
|
||||||
run: "ls -la Raylib-cs/runtimes/linux-x64/native/"
|
|
||||||
|
|
||||||
- name: 'Upload runtimes'
|
- name: 'Upload runtimes'
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue