This repository has been archived by the owner on Jun 3, 2024. It is now read-only.
源更新 #15
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: 文本替换 | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Find and Replace 1 | |
uses: thiagodnf/[email protected] | |
with: | |
find: "ghcr.io\\/parkervcp" | |
replace: "registry.cn-shanghai.aliyuncs.com\\/pterodactyl-images" | |
include: | | |
**/*.json | |
- name: Find and Replace 2 | |
uses: thiagodnf/[email protected] | |
with: | |
find: "ghcr.io\\/pterodactyl" | |
replace: "registry.cn-shanghai.aliyuncs.com\\/pterodactyl-china" | |
include: | | |
**/*.json | |
- name: Find and Replace 3 | |
uses: thiagodnf/[email protected] | |
with: | |
find: "quay.io" | |
replace: "quay.dockerproxy.com" | |
include: | | |
**/*.json |