Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
greenhat616 committed Feb 14, 2024
1 parent 5ac56ef commit 83d8bf4
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
category: aarch64

runs-on: ${{ matrix.targets.os }}
if: startsWith(github.repository, 'keiko233')
if: startsWith(github.repository, 'LibNyanpasu')
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
name: Update tag
runs-on: ubuntu-latest
needs: [release]
if: startsWith(github.repository, 'keiko233')
if: startsWith(github.repository, 'LibNyanpasu')
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
name: Update Nightly Updater
runs-on: ubuntu-latest
needs: [release, update_tag]
if: startsWith(github.repository, 'keiko233')
if: startsWith(github.repository, 'LibNyanpasu')
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
category: aarch64

runs-on: ${{ matrix.targets.os }}
if: startsWith(github.repository, 'keiko233')
if: startsWith(github.repository, 'LibNyanpasu')
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
needs: release
runs-on: ubuntu-latest
if: |
startsWith(github.repository, 'keiko233')
startsWith(github.repository, 'LibNyanpasu')
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/updater.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
release-update:
runs-on: ubuntu-latest
if: |
startsWith(github.repository, 'keiko233')
startsWith(github.repository, 'LibNyanpasu')
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions backend/tauri/overrides/nightly.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"tauri": {
"updater": {
"endpoints": [
"https://mirror.ghproxy.com/https://github.com/keiko233/clash-nyanpasu/releases/download/updater/update-nightly-proxy.json",
"https://gh-proxy.com/https://github.com/keiko233/clash-nyanpasu/releases/download/updater/update-nightly-proxy.json",
"https://github.com/keiko233/clash-nyanpasu/releases/download/updater/update-nightly.json"
"https://mirror.ghproxy.com/https://github.com/LibNyanpasu/clash-nyanpasu/releases/download/updater/update-nightly-proxy.json",
"https://gh-proxy.com/https://github.com/LibNyanpasu/clash-nyanpasu/releases/download/updater/update-nightly-proxy.json",
"https://github.com/LibNyanpasu/clash-nyanpasu/releases/download/updater/update-nightly.json"
]
}
}
Expand Down
2 changes: 1 addition & 1 deletion backend/tauri/src/core/updater.rs
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ fn decompress_and_set_permission(

pub async fn get_latest_version_manifest(mirror: &str) -> Result<ManifestVersion> {
let url = format!(
"{}/keiko233/clash-nyanpasu/raw/dev/manifest/version.json",
"{}/LibNyanpasu/clash-nyanpasu/raw/dev/manifest/version.json",
mirror
);
log::debug!("{}", url);
Expand Down
6 changes: 3 additions & 3 deletions backend/tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@
"updater": {
"active": true,
"endpoints": [
"https://mirror.ghproxy.com/https://github.com/keiko233/clash-nyanpasu/releases/download/updater/update-proxy.json",
"https://gh-proxy.com/https://github.com/keiko233/clash-nyanpasu/releases/download/updater/update-proxy.json",
"https://github.com/keiko233/clash-nyanpasu/releases/download/updater/update.json"
"https://mirror.ghproxy.com/https://github.com/LibNyanpasu/clash-nyanpasu/releases/download/updater/update-proxy.json",
"https://gh-proxy.com/https://github.com/LibNyanpasu/clash-nyanpasu/releases/download/updater/update-proxy.json",
"https://github.com/LibNyanpasu/clash-nyanpasu/releases/download/updater/update.json"
],
"dialog": false,
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDlBMUM0NjMxREZCNDRGMjYKUldRbVQ3VGZNVVljbW43N0FlWjA4UkNrbTgxSWxSSXJQcExXNkZjUTlTQkIyYkJzL0tsSWF2d0cK"
Expand Down
2 changes: 1 addition & 1 deletion src/pages/settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default function SettingPage() {
};

const toGithubRepo = useLockFn(() => {
return openWebUrl("https://github.com/keiko233/clash-nyanpasu");
return openWebUrl("https://github.com/LibNyanpasu/clash-nyanpasu");
});

return (
Expand Down

0 comments on commit 83d8bf4

Please sign in to comment.