Skip to content

modified index.html to test deploy.yml workflow #2

modified index.html to test deploy.yml workflow

modified index.html to test deploy.yml workflow #2

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@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./public # directory with generated files
- name: Deploy to Pages
uses: actions/deploy-pages@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}