Skip to content

Commit 077ddd1

Browse files
Add organization GitHub Pages site
0 parents  commit 077ddd1

11 files changed

Lines changed: 875 additions & 0 deletions

File tree

.github/workflows/pages.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Deploy GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- master
8+
9+
permissions:
10+
contents: read
11+
pages: write
12+
id-token: write
13+
14+
concurrency:
15+
group: "pages"
16+
cancel-in-progress: false
17+
18+
jobs:
19+
deploy:
20+
environment:
21+
name: github-pages
22+
url: ${{ steps.deployment.outputs.page_url }}
23+
runs-on: ubuntu-latest
24+
steps:
25+
- name: Checkout
26+
uses: actions/checkout@v4
27+
- name: Setup Pages
28+
uses: actions/configure-pages@v4
29+
- name: Upload artifact
30+
uses: actions/upload-pages-artifact@v3
31+
with:
32+
path: '.'
33+
- name: Deploy to GitHub Pages
34+
id: deployment
35+
uses: actions/deploy-pages@v4

.nojekyll

Whitespace-only changes.

README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Machine Learning Compatible Game Engine Lab
2+
3+
Static GitHub Pages site for the Machine Learning Compatible Game Engine Lab organization.
4+
5+
This site is part of the Dragoș-Andrei Bobu project ecosystem.
6+
7+
- Central hub: https://dragosandreibobu.github.io
8+
- GitHub organization: https://github.com/Machine-Learning-Compatible-Game-Engine
9+
10+
## Purpose
11+
12+
Research lab for experimental graphics, simulation loops, editor tooling, and C++/OpenGL rendering engines moving toward ML-agent compatibility.
13+
14+
## Related organizations
15+
16+
- [DigitalChalkLab](https://DigitalChalkLab.github.io)
17+
- [Hyperspace-Intelligence](https://Hyperspace-Intelligence.github.io)
18+
- [UAIC-BSc-ComputerScience](https://UAIC-BSc-ComputerScience.github.io)
19+
20+
21+
## Development
22+
23+
This is a static GitHub Pages site. Edit `index.html`, `assets/styles.css`, and `data/projects.json`.
24+
25+
## Deployment
26+
27+
Published through GitHub Actions Pages workflow.

0 commit comments

Comments
 (0)