Update single-page.yml

This commit is contained in:
taskylizard 2023-06-04 00:32:00 +05:30 committed by GitHub
parent 5d1ed476a8
commit 280b048856
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,12 +21,15 @@ jobs:
with: with:
python-version: '3.10' python-version: '3.10'
- name: Run script - name: Configure Git
run: python .github/single-page.py run: |
git config user.name "taskylizard"
git config user.email "75871323+taskylizard@users.noreply.github.com"
- name: Deploy - name: Update
uses: JamesIves/github-pages-deploy-action@4.1.5 shell: bash
with: run: |
branch: main python .github/single-page.py
folder: . git add .
commit-message: "♻️ update single page" git commit -m '♻️ update single page'
git push