Replace simulated terminal with a CSS recreation of dirge's phosphor TUI #7
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 to GitHub Pages | |
| on: | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Copy site to docs/ | |
| run: | | |
| mkdir -p docs | |
| cp index.html docs/ | |
| - name: Deploy to GitHub Pages | |
| run: | | |
| git config user.email "dmitri.sotnikov@gmail.com" | |
| git config user.name "Dmitri Sotnikov" | |
| git add docs/ | |
| if [ -n "$(git status --porcelain)" ]; then | |
| git commit -m "Deploy #${{ github.run_number }}" | |
| git push | |
| fi |