feat: massive front-end overhaul and initial github release
This commit is contained in:
parent
a2b40e38bf
commit
d5a0e70580
303 changed files with 19840 additions and 676 deletions
BIN
.github/screenshots/7s0842oAC9.png
(Stored with Git LFS)
vendored
Normal file
BIN
.github/screenshots/7s0842oAC9.png
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.github/screenshots/8jipsHiLST.png
(Stored with Git LFS)
vendored
Normal file
BIN
.github/screenshots/8jipsHiLST.png
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.github/screenshots/EWPHmIBEE5.png
(Stored with Git LFS)
vendored
Normal file
BIN
.github/screenshots/EWPHmIBEE5.png
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.github/screenshots/FHMzJjGOs6.png
(Stored with Git LFS)
vendored
Normal file
BIN
.github/screenshots/FHMzJjGOs6.png
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.github/screenshots/J5BHVZBh7k.png
(Stored with Git LFS)
vendored
Normal file
BIN
.github/screenshots/J5BHVZBh7k.png
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
47
.github/workflows/build.yml
vendored
Normal file
47
.github/workflows/build.yml
vendored
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
name: Build and Upload Canary
|
||||
on:
|
||||
# Allows you to run this manually from the Forgejo UI
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: node:20
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
# 1. FIX: Install system dependencies BEFORE setup-bun
|
||||
- name: Install system dependencies
|
||||
run: |
|
||||
apt-get update
|
||||
apt-get install -y unzip libstdc++6 libnss3 libatk1.0-0 libatk-bridge2.0-0 libcups2 libdrm2 libxkbcommon0 libxcomposite1 libxdamage1 libxrandr2 libgbm1 libasound2
|
||||
|
||||
- name: Manual Bun Install
|
||||
run: |
|
||||
# Download and install via official script
|
||||
curl -fsSL https://bun.sh/install | bash
|
||||
|
||||
# Manually add Bun to the PATH for subsequent steps
|
||||
echo "BUN_INSTALL=$HOME/.bun" >> $GITHUB_ENV
|
||||
echo "$HOME/.bun/bin" >> $GITHUB_PATH
|
||||
|
||||
# Force execution permissions just in case
|
||||
chmod +x $HOME/.bun/bin/bun
|
||||
|
||||
# Verify it works immediately
|
||||
$HOME/.bun/bin/bun --version
|
||||
|
||||
- name: Install dependencies
|
||||
run: bun install --frozen-lockfile
|
||||
|
||||
- name: Build Canary
|
||||
run: bun run package:auto-prod
|
||||
|
||||
- name: Upload Artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: canary-build
|
||||
path: build/
|
||||
retention-days: 7
|
||||
Loading…
Add table
Add a link
Reference in a new issue