Build and push to CloudFlare Worker #22
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: Build and push to CloudFlare Worker | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Spellcheck | |
runs-on: ubuntu-latest | |
steps: | |
# The checkout step | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Download Markdown file and update cloudflare.js | |
run: | | |
cd docker | |
curl -o dockerhub-proxy.md https://raw.githubusercontent.com/Websoft9/doc.websoft9.com/refs/heads/main/docs/reference/_include/dockerhub-proxy.md | |
# 提取 Markdown 文件中的 URL | |
urls=$(grep -Eo 'https://[a-zA-Z0-9./?=_-]*' dockerhub-proxy.md | sed 's/^/"/; s/$/"/' | tr '\n' ',' | sed 's/,$//') | |
# 创建新的 backends 数组 | |
new_backends="const backends = [${urls}]" | |
# 更新 cloudflare.js 文件中的 backends 数组 | |
sed -i "s|const backends = \[.*\]|${new_backends}|" cloudflare.js | |
- name: Set compatibility date | |
id: set-date | |
run: echo "COMPATIBILITY_DATE=$(date +%Y-%m-%d)" >> $GITHUB_ENV | |
- name: Deploy to cloudflare | |
uses: cloudflare/wrangler-action@v3 | |
with: | |
apiToken: ${{ secrets.EDIT_CLOUDFLARE_WORKERS }} | |
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
command: deploy docker/cloudflare.js --name test --compatibility-date ${{ env.COMPATIBILITY_DATE }} | |
# - name: Commit and push changes | |
# uses: stefanzweifel/git-auto-commit-action@v4 | |
# with: | |
# commit_message: update cloudflare.js |