feat(all): tailwind v5 rewrite, astro components

This commit is contained in:
z0x 2025-01-05 00:25:48 -05:00
parent ffebd2652b
commit 27314ccb15
31 changed files with 280 additions and 7623 deletions

View file

@ -0,0 +1,32 @@
name: build dist
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build-dist:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup bun.sh
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Update dependencies
run: |
bun install
bun run build
- name: Commit updates
run: |
git config user.name "gitea-actions[bot]"
git config user.email "gitea-actions[bot]@git.z0x.ca"
git add -f dist
git commit -m "ci(dist): build dist"
git push

View file

@ -0,0 +1,37 @@
name: update dependencies
on:
schedule:
- cron: '@daily'
workflow_dispatch:
push:
branches:
- main
jobs:
update-deps:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup bun.sh
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Update dependencies
run: |
bun update
bun install
- name: Commit updates
run: |
git config user.name "gitea-actions[bot]"
git config user.email "gitea-actions[bot]@git.z0x.ca"
git add .
if git diff --staged --quiet; then
echo "No updates avalable"
else
git commit -m "chore(deps): bump dependencies"
git push
fi