name: deploy articulate # articulate.famzheng.me — 中英猜词派对游戏。host shell runner(fam 用户)。 on: push: branches: [master] paths: - 'apps/articulate/**' - 'crates/cube-core/**' - 'Cargo.toml' - 'Cargo.lock' - '.gitea/workflows/deploy-articulate.yml' workflow_dispatch: jobs: build-and-deploy: runs-on: ubuntu-latest env: APP: articulate IMAGE: registry.famzheng.me/mochi/articulate steps: - uses: actions/checkout@v4 - name: Resolve image tag id: tag run: | echo "sha=$(git rev-parse --short=12 HEAD)" >> "$GITHUB_OUTPUT" - name: Build rust (musl static) run: | export PATH="$HOME/.cargo/bin:$PATH" cargo build --release --target x86_64-unknown-linux-musl -p "$APP" - name: Build frontend run: | cd "apps/$APP/frontend" npm ci npm run build - name: Run frontend tests run: | cd "apps/$APP/frontend" npm test -- --run - name: Build & push image env: REGISTRY_TOKEN: ${{ secrets.REGISTRY_TOKEN }} run: | echo "$REGISTRY_TOKEN" | docker login registry.famzheng.me -u mochi --password-stdin docker build --no-cache -f "apps/$APP/Dockerfile" -t "$IMAGE:${{ steps.tag.outputs.sha }}" . docker push "$IMAGE:${{ steps.tag.outputs.sha }}" - name: Initialize K8s resources run: | kubectl apply -f "apps/$APP/k8s/all.yaml" - name: Roll out to k3s run: | kubectl -n "cube-$APP" set image "deploy/$APP" "$APP=$IMAGE:${{ steps.tag.outputs.sha }}" kubectl -n "cube-$APP" rollout status "deploy/$APP" --timeout=120s