fix(ci): 部署前确保 Cloudflare Pages 项目存在(修复首次部署 Project not found)#62
Merged
Conversation
首次部署因 "Project not found" 失败——wrangler pages deploy 不会自动 创建项目。新增一步 wrangler pages project create(幂等,已存在则跳过), 用已配置的 CLOUDFLARE_API_TOKEN(含 Pages:Edit 权限)自动建项目, 使 CI 全自动完成"建项目 + 部署",无需手动在面板创建。
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
首次部署因
Project not found失败——wrangler pages deploy不自动建项目。新增幂等的wrangler pages project create步骤,用已配置的 secret 自动建项目,CI 全自动完成建项目+部署。关联 #61(官网)。