Simplify workflow
Some checks failed
Build and Deploy / build (push) Failing after 1m7s
Simple Deploy / deploy (push) Failing after 6s

This commit is contained in:
2025-11-19 15:15:22 +08:00
parent 02d794e293
commit c0fc65fa94

View File

@@ -0,0 +1,24 @@
name: Simple Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Deploy with Helm
run: |
# 直接用 kubectl 部署(已有代碼)
helm upgrade --install cloudforge ./cloudforge-dashboard-helm \
-n cloudforge \
--create-namespace
- name: Verify
run: |
kubectl rollout status deployment/dashboard-backend -n cloudforge