Skip to content

Fixed symlinks

Fixed symlinks #31

Workflow file for this run

# On every push this script is executed
on: push
name: Build and deploy GH Pages
jobs:
build_and_deploy:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout main
uses: actions/[email protected]
with:
submodules: recursive
token: ${{ secrets.TOKEN }}
- name: Prebuild
uses: oven-sh/setup-bun@v1
- run: bun install
working-directory: ./themes/tranquil
- run: bun x tailwindcss -i styles/styles.css -o static/styles/styles.css --minify
working-directory: ./themes/tranquil
- name: Build and deploy
uses: shalzz/[email protected]
env:
PAGES_BRANCH: gh-pages
GITHUB_TOKEN: ${{ secrets.TOKEN }}