Skip to content

another modification to test the workflow #4

another modification to test the workflow

another modification to test the workflow #4

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
paths:
- 'index.html'
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
- name: Deploy to Pages
uses: actions/deploy-pages@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}