From 669fa2626e7548c02227b5e587d8af2ead8b4b11 Mon Sep 17 00:00:00 2001 From: cialloo Date: Thu, 2 Oct 2025 15:08:42 +0800 Subject: [PATCH] Refactor CI workflow steps for clarity and organization --- .github/workflows/ci.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bc6b2c2..3812571 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,23 +33,19 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - # Step 2: Set up Docker Buildx (for advanced Docker builds) - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - # Step 3: Make CI script executable + # Step 2: Make CI script executable - name: Make CI script executable run: chmod +x script/ci.sh - # Step 4: Build Docker image + # Step 3: Build Docker image - name: Build Docker image run: ./script/ci.sh build - # Step 5: Push Docker image to registry + # Step 4: Push Docker image to registry - name: Push Docker image run: ./script/ci.sh push - # Step 6: Output summary + # Step 5: Output summary - name: Summary run: | echo "### :rocket: Build Complete!" >> $GITHUB_STEP_SUMMARY