fix syntax
This commit is contained in:
parent
872cd9980a
commit
c8d17c7bb7
1 changed files with 4 additions and 3 deletions
7
.github/workflows/build.yml
vendored
7
.github/workflows/build.yml
vendored
|
|
@ -31,8 +31,8 @@ jobs:
|
||||||
- name: Download Repo
|
- name: Download Repo
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Get Target Raylib Version
|
- id: get-tag
|
||||||
id: get-tag
|
name: Get Target Raylib Version
|
||||||
uses: QwerMike/xpath-action@v1
|
uses: QwerMike/xpath-action@v1
|
||||||
with:
|
with:
|
||||||
filename: "app.config"
|
filename: "app.config"
|
||||||
|
|
@ -42,8 +42,9 @@ jobs:
|
||||||
uses: robinraju/release-downloader@v1.2
|
uses: robinraju/release-downloader@v1.2
|
||||||
with:
|
with:
|
||||||
repository: "raysan5/raylib"
|
repository: "raysan5/raylib"
|
||||||
tag: steps.get-tag.outputs.results
|
tag: ${{ steps.get-tag.outputs.results }}
|
||||||
fileName: "*"
|
fileName: "*"
|
||||||
|
|
||||||
- name: output directory
|
- name: output directory
|
||||||
run: "ls -la ."
|
run: "ls -la ."
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue