Update push-cloudflare.yaml

This commit is contained in:
二叉树树 2025-11-21 15:40:33 +08:00 committed by GitHub
parent 068b380720
commit b2ad014e00
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,65 +1,51 @@
name: Build name: Build
on: on:
push: push:
branches: [main, uat, release*] branches: [main, uat, release*]
pull_request_target: pull_request_target:
branches: [main, uat, release*] branches: [main, uat, release*]
workflow_dispatch: workflow_dispatch:
jobs: jobs:
build: build:
name: Run production build name: Run production build
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout source - uses: actions/checkout@v4
uses: actions/checkout@v4
# 固定 Rust 版本,而不是默认 stable 滚动升级 # selecting a toolchain either by action or manual `rustup` calls should happen
- name: Install Rust toolchain # before the plugin, as the cache uses the current rustc version as its cache key
run: | - run: rustup toolchain install stable --profile minimal
rustup toolchain install 1.75.0 --profile minimal - name: Cache Cargo registry and build artifacts
rustup default 1.75.0 uses: actions/cache@v3
with:
path: |
target
~/.cargo/bin
~/.cargo/registry
~/.cargo/git
key: cargo-build-cache-${{ github.run_id }}
restore-keys: |
cargo-build-cache-
- run: rustup target add wasm32-unknown-unknown
- name: Install lld
run: sudo apt install -y lld clang gcc llvm
# 固定 cache action 版本 - name: Install worker-build
- name: Cache Cargo registry and build artifacts run: |
uses: actions/cache@v3 if ! command -v worker-build &> /dev/null; then
with: cargo install worker-build
path: | fi
target
~/.cargo/bin
~/.cargo/registry
~/.cargo/git
key: cargo-build-cache-${{ github.run_id }}
restore-keys: |
cargo-build-cache-
# 固定 wasm target - name: Replace D1_DATABASE_ID in wrangler.toml
- name: Add wasm target run: sed -i "s/\${D1_DATABASE_ID}/${{ secrets.D1_DATABASE_ID }}/g" wrangler.toml
run: rustup target add wasm32-unknown-unknown
# 固定编译工具链版本 - uses: cloudflare/wrangler-action@v3
- name: Install lld id: cf
run: sudo apt-get update && sudo apt-get install -y lld=1:14.0-55~ubuntu1 clang gcc llvm env:
D1_DATABASE_ID: ${{ secrets.D1_DATABASE_ID }}
# 固定 worker-build 版本,不使用最新 with:
- name: Install worker-build apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
run: | accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
if ! command -v worker-build &> /dev/null; then
cargo install worker-build --version 0.3.0
fi
# 替换配置
- name: Replace D1_DATABASE_ID in wrangler.toml
run: sed -i "s/\${D1_DATABASE_ID}/${{ secrets.D1_DATABASE_ID }}/g" wrangler.toml
# 固定 wrangler-action 到确定版本
- name: Publish to Cloudflare
uses: cloudflare/wrangler-action@v3
id: cf
env:
D1_DATABASE_ID: ${{ secrets.D1_DATABASE_ID }}
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}