Compare commits

...

10 Commits

Author SHA1 Message Date
2b24a66dbc oo1 2025-09-25 09:27:18 -07:00
92487eac92 11 2025-09-25 09:16:23 -07:00
c1ab737894 c 2025-09-25 09:13:54 -07:00
3fdd504d01 i1 2025-09-25 09:11:44 -07:00
98a9fc041f init02 2025-09-25 09:10:04 -07:00
006886751f ci(build:admin) 2025-09-25 09:06:10 -07:00
832e55363b ci(build:admin) 2025-09-25 09:02:08 -07:00
ea16dbb91d tg 2025-09-25 08:58:54 -07:00
fcfd2a9a9f init01 2025-09-25 08:55:12 -07:00
02fc54df21 init01 2025-09-25 08:36:23 -07:00
2 changed files with 62 additions and 10 deletions

View File

@ -9,12 +9,15 @@ on:
- cicd
env:
DOMAIN_URL: git.kxsw.us #*修改为你
DOMAIN_URL: git.kxsw.us #*修改为你1
REPO: ${{ vars.REPO }}
TELEGRAM_BOT_TOKEN: ${{ secrets.TELEGRAM_BOT_TOKEN }}
TELEGRAM_CHAT_ID: ${{ secrets.TELEGRAM_CHAT_ID }}
DOCKER_REGISTRY: registry.kxsw.us
jobs:
build:
runs-on: ppanel-web01
runs-on: ppanel-web02
container:
image: node:20
strategy:
@ -26,11 +29,56 @@ jobs:
- name: Checkout code
uses: https://gitea.cn/actions/checkout@v4
- id: tool-cache
uses: https://${{ vars.GIT_USERNAME }}:${{ vars.GIT_PASSWORD }}@${{ env.DOMAIN_URL }}/actions/gitea-tool-cache@v5
with:
# 只有node支持版本号别名
node-version: lts
- name: Install system tools (jq, docker, curl)
run: |
apt-get update
apt-get install -y jq curl ca-certificates docker.io
docker --version
jq --version
curl --version
- name: Install Bun
run: |
curl -fsSL https://bun.sh/install | bash
echo "BUN_INSTALL=/root/.bun" >> $GITHUB_ENV
echo "PATH=/root/.bun/bin:${PATH}" >> $GITHUB_ENV
/root/.bun/bin/bun --version
- name: Configure npm registry (npmmirror) and canvas mirror
run: |
echo "registry=https://registry.npmmirror.com" >> .npmrc
echo "canvas_binary_host_mirror=https://registry.npmmirror.com/-/binary/canvas" >> .npmrc
- name: Install dependencies (bun)
run: bun install
- name: Run Build Project (turbo via bun)
run: bun run build
- name: Run Build Docker
run: make build
- name: Push Docker Images
run: make push
- name: Notify success to Telegram
uses: chapvic/telegram-notify@master
if: success()
with:
token: ${{ env.TELEGRAM_BOT_TOKEN }}
chat: ${{ env.TELEGRAM_CHAT_ID }}
status: ${{ job.status }}
title: ✅ 构建成功
message: ${{ github.repository }} 构建成功 · 分支: ${{ github.ref }} · 提1交: ${{ github.sha }}
footer: 触发者: ${{ github.actor }}
- name: Notify failure to Telegram
uses: chapvic/telegram-notify@master
if: failure()
with:
token: ${{ env.TELEGRAM_BOT_TOKEN }}
chat: ${{ env.TELEGRAM_CHAT_ID }}
status: ${{ job.status }}
title: ❌ 构建失败
message: ${{ github.repository }} 构建失败 · 分支: ${{ github.ref }} · 提交: ${{ github.sha }}
footer: 触发者: ${{ github.actor }}

View File

@ -46,14 +46,14 @@ push: push-admin push-user ## Push both admin and user images to the registry
.PHONY: push-admin
push-admin: ## Push the admin image to the registry
@echo "Pushing admin image..."
@echo "Pushing admin image ${ADMIN_IMAGE}:${VERSION} and ${ADMIN_IMAGE}:latest..."
docker push ${ADMIN_IMAGE}:${VERSION}
docker push ${ADMIN_IMAGE}:latest
@echo "Successfully pushed admin image."
.PHONY: push-user
push-user: ## Push the user image to the registry
@echo "Pushing user image..."
@echo "Pushing user image ${USER_IMAGE}:${VERSION} and ${USER_IMAGE}:latest..."
docker push ${USER_IMAGE}:${VERSION}
docker push ${USER_IMAGE}:latest
@echo "Successfully pushed user image."
@ -72,4 +72,8 @@ help: ## Show this help message
@echo "Usage: make [target]"
@echo ""
@echo "Targets:"
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
.PHONY: version
version: ## Print project version from package.json
@echo "${VERSION}"