Skip to content

chore: replace 'She Codes' and 'Coding & Cupcakes' with 'Code without… #5

chore: replace 'She Codes' and 'Coding & Cupcakes' with 'Code without…

chore: replace 'She Codes' and 'Coding & Cupcakes' with 'Code without… #5

Workflow file for this run

name: Deploy site to GitHub Pages
on:
push:
branches:
- main
permissions:
contents: write
pages: write
id-token: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Deploy to gh-pages branch
uses: peaceiris/actions-gh-pages@v3
with:
publish_dir: ./site
publish_branch: gh-pages
keep_files: false
github_token: ${{ secrets.GITHUB_TOKEN }}