%表示修正 #201
This file contains 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
name: cloudflare | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [opened, synchronize, reopened] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: contains(github.event.head_commit.message, '[skip ci]') == false | |
steps: | |
- name: 📥 Checkout repository | |
uses: actions/checkout@v3 | |
- name: 📸 Calculate commit hash | |
id: sha | |
uses: pr-mpt/actions-commit-hash@v2 | |
- name: 🔨 Prepare Node environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: 🎉 Install project dependencies | |
run: yarn install | |
- name: 🏗️ Build app | |
run: yarn run build | |
env: | |
VITE_ESA_APP_CLIENT_ID: ${{ secrets.ESA_APP_CLIENT_ID }} | |
VITE_ESA_APP_REDIRECT_URI: ${{ secrets.ESA_APP_REDIRECT_URI }} | |
- name: 🚀 Deploy to Cloudflare Pages | |
id: cloudflare_pages_deploy | |
uses: cloudflare/wrangler-action@2.0.0 | |
with: | |
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
command: "pages deploy . --project-name esachievement" | |
workingDirectory: ./dist | |
env: | |
NODE_VERSION: 22 | |
- name: 🚀 Deploy pages based on commit sha | |
uses: actions/github-script@v6 | |
with: | |
script: | | |
const sha = context.payload.pull_request?.head.sha ?? context.sha; | |
await github.rest.repos.createCommitStatus({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
context: "cloudflare / build (push)", | |
description: "Commit based deploy", | |
state: "success", | |
sha, | |
target_url: "https://esachievement.pages.dev", | |
}); |