Skip to content

perms

perms #5

Workflow file for this run

name: "Generate homepage"
permissions:
contents: read
pages: write
id-token: write
on:
push:
branches: [ "main-test-gh" ]
pull_request:
branches: [ "main" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/configure-pages@v3
- run: |
mkdir "./_tmp_gh_pages"
echo "Hello, World" > "./_tmp_gh_pages/index.html"
- uses: actions/upload-pages-artifact@v2
with:
path: "./_tmp_gh_pages"
- uses: actions/deploy-pages@main