Skip to content

Update README.md

Update README.md #2

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main # Triggers deployment on every push to the main branch
workflow_dispatch: # Allows manual trigger from the Actions tab
permissions:
contents: read
pages: write
id-token: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload Artifact
uses: actions/upload-pages-artifact@v2
with:
path: "."
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2