Add README and GitHub Pages deployment
Deploy Fractalier to GitHub Pages / deploy (push) Waiting to run

This commit is contained in:
Emil
2026-07-29 23:52:46 +03:00
parent 2c5d146201
commit 3466aadf09
2 changed files with 90 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
name: Deploy Fractalier to GitHub Pages
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Configure GitHub Pages
uses: actions/configure-pages@v5
- name: Upload static site
uses: actions/upload-pages-artifact@v3
with:
path: .
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4