mirror of
https://github.com/2dust/v2rayN.git
synced 2026-07-26 09:52:05 +03:00
* Add files via upload * Update build-all.yml * Update build-linux.yml * Update build-osx.yml * Update build-windows-desktop.yml * Update build-windows-x86.yml * Update build-windows.yml * Update package-zip.yml * Update build-linux.yml * Update build-osx.yml * Update build-windows-x86.yml * Update package-zip.yml * Update upload-sign.yml * Update pub-key.yml * Update README.md --------- Co-authored-by: 2dust <31833384+2dust@users.noreply.github.com>
96 lines
3.0 KiB
YAML
96 lines
3.0 KiB
YAML
name: release all platforms
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
release_tag:
|
|
required: false
|
|
type: string
|
|
|
|
permissions:
|
|
actions: write
|
|
contents: write
|
|
|
|
jobs:
|
|
public-key:
|
|
if: inputs.release_tag != ''
|
|
uses: ./.github/workflows/pub-key.yml
|
|
with:
|
|
release_tag: ${{ inputs.release_tag }}
|
|
secrets:
|
|
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
|
|
|
|
update:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Trigger build windows
|
|
if: 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\": \"${{ inputs.release_tag }}\"
|
|
}
|
|
}"
|
|
|
|
- name: Trigger build linux
|
|
if: 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\": \"${{ inputs.release_tag }}\"
|
|
}
|
|
}"
|
|
|
|
- name: Trigger build osx
|
|
if: 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\": \"${{ inputs.release_tag }}\"
|
|
}
|
|
}"
|
|
|
|
- name: Trigger build windows desktop
|
|
if: 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\": \"${{ inputs.release_tag }}\"
|
|
}
|
|
}"
|
|
|
|
- name: Trigger build windows x86
|
|
if: 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-x86.yml/dispatches \
|
|
-d "{
|
|
\"ref\": \"master\",
|
|
\"inputs\": {
|
|
\"release_tag\": \"${{ inputs.release_tag }}\"
|
|
}
|
|
}"
|