Added git chenkout and git commit

This commit is contained in:
Hugo Bernier 2024-03-24 16:48:11 -04:00 committed by GitHub
parent deceaddcbf
commit 69c27816f3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 15 additions and 0 deletions

View File

@ -39,6 +39,21 @@ jobs:
file_pattern: samples.json file_pattern: samples.json
push_options: '--force' push_options: '--force'
- name: Checkout gh-pages branch
run: |
git fetch
git checkout gh-pages
- name: Copy samples.json to gh-pages branch
run: cp samples.json ./samples.json
# - name: Commit samples.json to gh-pages branch
# run: |
# git config --local user.email "${{ secrets.USER_EMAIL }}"
# git config --local user.name "${{ secrets.USER_NAME }}"
# git add ./samples.json
# git commit -m "Update samples.json in gh-pages branch"
# git push origin gh-pages
- name: Commit to gh-pages branch - name: Commit to gh-pages branch
uses: stefanzweifel/git-auto-commit-action@v4 uses: stefanzweifel/git-auto-commit-action@v4
with: with: