From c8d17c7bb72263c78a103f11cef4d60e41bef6d5 Mon Sep 17 00:00:00 2001 From: Ben Parsons <9parsonsb@gmail.com> Date: Fri, 1 Oct 2021 21:07:38 +1000 Subject: [PATCH] fix syntax --- .github/workflows/build.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 372c8e4..20d13ae 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,8 +31,8 @@ jobs: - name: Download Repo 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 with: filename: "app.config" @@ -42,8 +42,9 @@ jobs: uses: robinraju/release-downloader@v1.2 with: repository: "raysan5/raylib" - tag: steps.get-tag.outputs.results + tag: ${{ steps.get-tag.outputs.results }} fileName: "*" + - name: output directory run: "ls -la ."