Skip to content

Update gh-pages.yml #17

Update gh-pages.yml

Update gh-pages.yml #17

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main # Change to the branch you want to use
jobs:
# Single deploy job no building
deploy:
environment:
name: github-pages
url: https://github.com/solarpush/spaced-memo
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload Artifact
uses: actions/upload-pages-artifact@v2
with:
# upload entire directory
path: "."
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2