Compare commits

..

2 Commits

Author SHA1 Message Date
2157263c21 Deploy fix
Some checks failed
Deploy to GitHub Pages / deploy (push) Has been cancelled
2026-02-23 21:56:52 +01:00
e3052505ec Deploy to github pages workflow added 2026-02-23 21:51:51 +01:00
2 changed files with 31 additions and 0 deletions

25
.github/workflows/deploy.yml vendored Normal file
View File

@@ -0,0 +1,25 @@
name: Deploy to GitHub Pages
on:
push:
branches: [main]
permissions:
contents: read
pages: write
id-token: write
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/configure-pages@v4
- uses: actions/upload-pages-artifact@v3
with:
path: ./src/gui
- id: deployment
uses: actions/deploy-pages@v4

6
src/gui/index.html Normal file
View File

@@ -0,0 +1,6 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="0; url=gui.html" />
</head>
</html>