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
36 changes: 36 additions & 0 deletions .github/workflows/gh-pages-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Github Pages documentation is bad, so I had to follow a couple guides:
# - https://www.geeksforgeeks.org/git/github-pages/
# - https://docs.github.com/en/actions/tutorials/build-and-test-code/nodejs
# - https://github.com/peaceiris/actions-gh-pages

name: Github Pages CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['20.x']

steps:
- uses: actions/checkout@v5
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public

4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
core
node_modules/
MISC/
public/
vimsession.vim
Session.vim
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#### my website repository
# Daniel Maiovskyi website repository

### little bit of info
This is an implementation of a personal website design I made in October 2025.

- MVC library - [Mithril.js](https://mithril.js.org/)
- Canvas animation script - [`./assets/js/background.js`](https://github.com/Godje/godje.github.io/blob/master/assets/js/background.js)
- First page SCSS grid - [Toast.scss](https://github.com/daneden/Toast)
## stack
- 11ty.js static site generator
- JavaScript
1 change: 0 additions & 1 deletion assets/client.min.js

This file was deleted.

1 change: 0 additions & 1 deletion assets/css/styles.css

This file was deleted.

Binary file removed assets/images/avatar.jpg
Binary file not shown.
Binary file removed assets/images/bouncing_particles.png
Binary file not shown.
Binary file removed assets/images/sine_wave.png
Binary file not shown.
Binary file removed assets/images/spinning_stars.png
Binary file not shown.
91 changes: 0 additions & 91 deletions assets/js/background.js

This file was deleted.

13 changes: 0 additions & 13 deletions assets/js/index.js

This file was deleted.

80 changes: 0 additions & 80 deletions assets/js/pages/Home.js

This file was deleted.

Loading