Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,9 @@ jobs:
needs: build
runs-on: ubuntu-latest
permissions:
pages: write
contents: read
id-token: write
pages: write
environment:
name: github-pages
steps:
Expand All @@ -53,5 +54,7 @@ jobs:
- name: Deploy para GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
with:
debug: true
env:
DEBUG_HTTP: true
#with:
#debug: true
6 changes: 4 additions & 2 deletions scripts/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@
body {
background-color: #010;
font-family: 'Muli light', sans-serif;
background-image: url(https://cdn.pixabay.com/photo/2025/02/03/13/53/coffee-9379521_1280.png)
background-image: url(https://cdn.pixabay.com/photo/2025/02/03/13/53/coffee-9379521_1280.png);
background-repeat: no-repeat;
background-attachment: fixed;
}

h1,
Expand Down Expand Up @@ -57,4 +59,4 @@
file_put_contents(__DIR__ . '/../public/index.html', $content);

echo "Página compilada com sucesso!\n";
?>
?>
Loading