mirror of
https://github.com/2dust/v2rayN.git
synced 2025-10-27 10:40:08 +00:00
Compare commits
No commits in common. "064a04fbadaa2a570ce712c2719cda17cb92f168" and "c9f79e4b4705f6fb176fa6bec9320342e86e014f" have entirely different histories.
064a04fbad
...
c9f79e4b47
3 changed files with 2 additions and 71 deletions
69
.github/workflows/build-all.yml
vendored
69
.github/workflows/build-all.yml
vendored
|
|
@ -1,69 +0,0 @@
|
||||||
name: release all platforms
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
inputs:
|
|
||||||
release_tag:
|
|
||||||
required: false
|
|
||||||
type: string
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
update:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
|
|
||||||
- name: Trigger build windows
|
|
||||||
if: github.event.inputs.release_tag != ''
|
|
||||||
run: |
|
|
||||||
curl -X POST \
|
|
||||||
-H "Accept: application/vnd.github.v3+json" \
|
|
||||||
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
|
|
||||||
https://api.github.com/repos/${{ github.repository }}/actions/workflows/build-windows.yml/dispatches \
|
|
||||||
-d "{
|
|
||||||
\"ref\": \"master\",
|
|
||||||
\"inputs\": {
|
|
||||||
\"release_tag\": \"${{ github.event.inputs.release_tag }}\"
|
|
||||||
}
|
|
||||||
}"
|
|
||||||
|
|
||||||
- name: Trigger build linux
|
|
||||||
if: github.event.inputs.release_tag != ''
|
|
||||||
run: |
|
|
||||||
curl -X POST \
|
|
||||||
-H "Accept: application/vnd.github.v3+json" \
|
|
||||||
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
|
|
||||||
https://api.github.com/repos/${{ github.repository }}/actions/workflows/build-linux.yml/dispatches \
|
|
||||||
-d "{
|
|
||||||
\"ref\": \"master\",
|
|
||||||
\"inputs\": {
|
|
||||||
\"release_tag\": \"${{ github.event.inputs.release_tag }}\"
|
|
||||||
}
|
|
||||||
}"
|
|
||||||
|
|
||||||
- name: Trigger build osx
|
|
||||||
if: github.event.inputs.release_tag != ''
|
|
||||||
run: |
|
|
||||||
curl -X POST \
|
|
||||||
-H "Accept: application/vnd.github.v3+json" \
|
|
||||||
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
|
|
||||||
https://api.github.com/repos/${{ github.repository }}/actions/workflows/build-osx.yml/dispatches \
|
|
||||||
-d "{
|
|
||||||
\"ref\": \"master\",
|
|
||||||
\"inputs\": {
|
|
||||||
\"release_tag\": \"${{ github.event.inputs.release_tag }}\"
|
|
||||||
}
|
|
||||||
}"
|
|
||||||
|
|
||||||
- name: Trigger build windows desktop
|
|
||||||
if: github.event.inputs.release_tag != ''
|
|
||||||
run: |
|
|
||||||
curl -X POST \
|
|
||||||
-H "Accept: application/vnd.github.v3+json" \
|
|
||||||
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
|
|
||||||
https://api.github.com/repos/${{ github.repository }}/actions/workflows/build-windows-desktop.yml/dispatches \
|
|
||||||
-d "{
|
|
||||||
\"ref\": \"master\",
|
|
||||||
\"inputs\": {
|
|
||||||
\"release_tag\": \"${{ github.event.inputs.release_tag }}\"
|
|
||||||
}
|
|
||||||
}"
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<Project>
|
<Project>
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Version>7.9.3</Version>
|
<Version>7.9.2</Version>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
|
|
|
||||||
|
|
@ -472,7 +472,7 @@ namespace ServiceLib.Services
|
||||||
_ => null,
|
_ => null,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
return await Task.FromResult("");
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion CheckUpdate private
|
#endregion CheckUpdate private
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue