From 8427023b605ccb5b4b69e9509e93b4d8e532f8d6 Mon Sep 17 00:00:00 2001 From: Johnny Cena Date: Wed, 20 Aug 2025 17:30:16 +0200 Subject: [PATCH] add proper access token --- .github/workflows/update_examples.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update_examples.yml b/.github/workflows/update_examples.yml index b2826d3ba..9594683c7 100644 --- a/.github/workflows/update_examples.yml +++ b/.github/workflows/update_examples.yml @@ -31,7 +31,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - git clone https://x-access-token:${GITHUB_TOKEN}@github.com/$GITHUB_REPOSITORY_OWNER/raylib.com.git "${{ github.workspace }}/../raylib.com" + git clone https://x-access-token:${{ secrets.RAYLIB_DOT_COM_REPO_TOKEN }}@github.com/$GITHUB_REPOSITORY_OWNER/raylib.com.git "${{ github.workspace }}/../raylib.com" shell: bash - name: Build and run rexm tool (GNU Makefile) @@ -86,6 +86,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | + cd "${{ github.workspace }}/../raylib.com" git add examples git commit -m "Update web examples"