Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
ryderdamen committed Oct 23, 2024
1 parent 5054a51 commit 1d11ba7
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 24 deletions.
22 changes: 21 additions & 1 deletion .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,28 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14'

- name: Install Docsify CLI
run: npm install -g docsify-cli

- name: Build Docsify site
run: docsify init ./docs

- name: Copy files to docs
run: |
cp index.html ./docs/
cp README.md ./docs/
cp _sidebar.md ./docs/
cp about.md ./docs/
cp conferences.md ./docs/
cp resources.md ./docs/
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: .
publish_dir: ./docs
6 changes: 2 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
# Node modules (if using npm for any reason)
node_modules/

# Docsify generated files
_sidebar.md

# Logs
*.log

Expand All @@ -29,9 +26,10 @@ Makefile
*.swp
*.swo

# Build output (if any)
# Build output
dist/
build/
docs/

# Coverage directory used by tools like istanbul
coverage/
Expand Down
4 changes: 4 additions & 0 deletions _sidebar.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- [Home](/)
- [About](about.md)
- [Conferences](conferences.md)
- [Resources](resources.md)
26 changes: 7 additions & 19 deletions conferences.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,12 @@

Stay updated with the latest trends and network with fellow professionals by attending these conferences:

1. **SIGGRAPH**
- Focus: Computer graphics and interactive techniques
- Website: [https://www.siggraph.org/](https://www.siggraph.org/)

2. **Ars Electronica Festival**
- Focus: Art, technology, and society
- Website: [https://ars.electronica.art/](https://ars.electronica.art/)

3. **Eyeo Festival**
- Focus: Creativity and technology
- Website: [http://eyeofestival.com/](http://eyeofestival.com/)

4. **Resonate Festival**
- Focus: Art and technology
- Website: [https://resonate.io/](https://resonate.io/)

5. **KIKK Festival**
- Focus: Digital and creative cultures
- Website: [https://www.kikk.be/](https://www.kikk.be/)
| Conference Name | Focus | Location |
|-----------------|-------|----------|
| [SIGGRAPH](https://www.siggraph.org/) | Computer graphics and interactive techniques | Various (North America) |
| [Ars Electronica Festival](https://ars.electronica.art/) | Art, technology, and society | Linz, Austria |
| [Eyeo Festival](http://eyeofestival.com/) | Creativity and technology | Minneapolis, USA |
| [Resonate Festival](https://resonate.io/) | Art and technology | Belgrade, Serbia |
| [KIKK Festival](https://www.kikk.be/) | Digital and creative cultures | Namur, Belgium |

Remember to check the official websites for the most up-to-date information on dates, locations, and ticket availability.

0 comments on commit 1d11ba7

Please sign in to comment.