Revamp website, add easter egg :3 #21
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Deploy | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| on: | |
| workflow_dispatch: | |
| push: | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Clone webby | |
| run: git clone https://github.com/bright-shard/webby.git | |
| - name: Install webby | |
| run: cd webby; cargo install --path . | |
| - name: Run webby | |
| run: webby | |
| - name: Setup Pages | |
| uses: actions/configure-pages@v4 | |
| - name: Upload artifacts | |
| uses: actions/upload-pages-artifact@v3 | |
| with: | |
| path: "webby" | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |