Browse Source

add missing dollar signs

pull/5129/head
Johnny Cena 1 month ago
parent
commit
dad6f54d18
1 changed files with 7 additions and 7 deletions
  1. +7
    -7
      .github/workflows/update_examples.yml

+ 7
- 7
.github/workflows/update_examples.yml View File

@ -34,7 +34,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git clone https://x-access-token:${GITHUB_TOKEN}@github.com/raysan5/raylib.com.git "{{ github.workspace }}/../raylib.com"
git clone https://x-access-token:${GITHUB_TOKEN}@github.com/raysan5/raylib.com.git "${{ github.workspace }}/../raylib.com"
shell: cmd
- name: Build and run rexm tool (VS2022 solution)
@ -44,13 +44,13 @@ jobs:
cd tools/rexm/VS2022
msbuild.exe rexm.sln /target:rexm /property:Configuration=Release /property:Platform=x64
cd ../../..
set REXM_EXAMPLES_BASE_PATH="{{ github.workspace }}/examples"
set REXM_EXAMPLES_WEB_PATH="{{ github.workspace }}/../raylib.com/examples"
set REXM_EXAMPLES_TEMPLATE_FILE_PATH="{{ github.workspace }}examples/examples_template.c"
set REXM_EXAMPLES_TEMPLATE_SCREENSHOT_PATH="{{ github.workspace }}examples/examples_template.png"
set REXM_EXAMPLES_BASE_PATH="${{ github.workspace }}/examples"
set REXM_EXAMPLES_WEB_PATH="${{ github.workspace }}/../raylib.com/examples"
set REXM_EXAMPLES_TEMPLATE_FILE_PATH="${{ github.workspace }}examples/examples_template.c"
set REXM_EXAMPLES_TEMPLATE_SCREENSHOT_PATH="${{ github.workspace }}examples/examples_template.png"
set REXM_EXAMPLES_COLLECTION_FILE_PATH="${{ github.workspace }}/examples/examples_list.txt"
set REXM_EXAMPLES_VS2022_SLN_FILE="{{ github.workspace }}/projects/VS2022/raylib.sln"
set EMSDK_PATH="{{ github.workspace }}/emsdk-cache/emsdk-main"
set REXM_EXAMPLES_VS2022_SLN_FILE="${{ github.workspace }}/projects/VS2022/raylib.sln"
set EMSDK_PATH="${{ github.workspace }}/emsdk-cache/emsdk-main"
.\tools\rexm\VS2022\build\rexm\bin\x64\Release\rexm.exe update
cd ../..
shell: cmd

Loading…
Cancel
Save