diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 7911fc6..b32aad0 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -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 diff --git a/.gitignore b/.gitignore index 6c70066..d4c1f73 100644 --- a/.gitignore +++ b/.gitignore @@ -8,9 +8,6 @@ # Node modules (if using npm for any reason) node_modules/ -# Docsify generated files -_sidebar.md - # Logs *.log @@ -29,9 +26,10 @@ Makefile *.swp *.swo -# Build output (if any) +# Build output dist/ build/ +docs/ # Coverage directory used by tools like istanbul coverage/ diff --git a/_sidebar.md b/_sidebar.md new file mode 100644 index 0000000..ccd113f --- /dev/null +++ b/_sidebar.md @@ -0,0 +1,4 @@ +- [Home](/) +- [About](about.md) +- [Conferences](conferences.md) +- [Resources](resources.md) diff --git a/conferences.md b/conferences.md index ba7cd71..ab98c27 100644 --- a/conferences.md +++ b/conferences.md @@ -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.