Files
admin-ui/.gitea/workflows/deploy.yaml
张斌 2c3700f4f8
Some checks failed
自动部署 / 部署应用 (push) Failing after 1m31s
cicd
2026-06-02 22:49:41 +08:00

14 lines
354 B
YAML

name: 自动部署
on:
push:
branches: [ master]
jobs:
部署应用:
runs-on: ubuntu-latest
steps:
- name: 拉取代码
uses: actions/checkout@v4
- name: k8s部署
run: |
/usr/local/bin/kubectl apply -f k8s/
/usr/local/bin/kubectl rollout restart deployment admin-ui -n kubernetes-dashboard