mirror of
https://github.com/Websoft9/websoft9.git
synced 2024-11-22 07:30:24 +00:00
Update dockerhub_proxy.yml
This commit is contained in:
parent
fa019cdf4d
commit
ad7cf356b4
1 changed files with 16 additions and 5 deletions
21
.github/workflows/dockerhub_proxy.yml
vendored
21
.github/workflows/dockerhub_proxy.yml
vendored
|
@ -12,11 +12,22 @@ jobs:
|
|||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
# - name: Build cloudflare.js for Dockerhub proxy
|
||||
# run: |
|
||||
# cd docker
|
||||
# curl -o https://raw.githubusercontent.com/Websoft9/doc.websoft9.com/refs/heads/main/docs/reference/_include/dockerhub-proxy.md
|
||||
# echo "Insert proxy lists to cloudflare.js"
|
||||
- name: Build cloudflare.js for Dockerhub proxy
|
||||
run: |
|
||||
cd docker
|
||||
curl -o https://raw.githubusercontent.com/Websoft9/doc.websoft9.com/refs/heads/main/docs/reference/_include/dockerhub-proxy.md
|
||||
echo "Insert proxy lists to cloudflare.js"
|
||||
|
||||
- name: Extract URLs from Markdown and update cloudflare.js
|
||||
run: |
|
||||
# Extract URLs from the downloaded Markdown file
|
||||
urls=$(grep -Eo 'https://[a-zA-Z0-9./?=_-]*' docker/dockerhub-proxy.md | tr '\n' ',' | sed 's/,$//')
|
||||
|
||||
# Create the new backends array
|
||||
new_backends="const backends = [${urls}]"
|
||||
|
||||
# Update cloudflare.js with the new backends array
|
||||
sed -i "s|const backends = \[.*\]|${new_backends}|" docker/cloudflare.js
|
||||
|
||||
- name: Set compatibility date
|
||||
id: set-date
|
||||
|
|
Loading…
Reference in a new issue