Fix background affect other page & Search bar position #2
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: 'Compile SCSS' | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| name: 'Build CSS' | |
| runs-on: 'ubuntu-latest' | |
| steps: | |
| - name: 'Checkout Repo' | |
| uses: 'actions/checkout@v2' | |
| - name: 'Install BUN' | |
| uses: 'oven-sh/setup-bun@v2' | |
| - name: 'Install of dependencies' | |
| run: 'bun i' | |
| - name: 'Run build script' | |
| run: 'bun run build' | |
| - name: 'Deploy' | |
| uses: 'peaceiris/actions-gh-pages@v3' | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_branch: 'deploy' | |
| publish_dir: './dist' |