Browse Source

add proper access token

pull/5129/head
Johnny Cena 2 months ago
parent
commit
8427023b60
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      .github/workflows/update_examples.yml

+ 2
- 1
.github/workflows/update_examples.yml View File

@ -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"

Loading…
Cancel
Save