mirror of
https://github.com/bryangerlach/rdgen.git
synced 2025-11-29 00:23:27 +00:00
hopefully fix 500 error on download links
This commit is contained in:
24
.github/workflows/generator-linux.yml
vendored
24
.github/workflows/generator-linux.yml
vendored
@@ -110,14 +110,6 @@ jobs:
|
|||||||
deb_arch: arm64,
|
deb_arch: arm64,
|
||||||
vcpkg-triplet: arm64-linux,
|
vcpkg-triplet: arm64-linux,
|
||||||
}
|
}
|
||||||
# - {
|
|
||||||
# arch: aarch64,
|
|
||||||
# target: aarch64-unknown-linux-gnu,
|
|
||||||
# distro: ubuntu18.04,
|
|
||||||
# on: [self-hosted, Linux, ARM64],
|
|
||||||
# deb_arch: arm64,
|
|
||||||
# vcpkg-triplet: arm64-linux,
|
|
||||||
# }
|
|
||||||
steps:
|
steps:
|
||||||
- name: Export GitHub Actions cache environment variables
|
- name: Export GitHub Actions cache environment variables
|
||||||
uses: actions/github-script@v6
|
uses: actions/github-script@v6
|
||||||
@@ -626,7 +618,7 @@ jobs:
|
|||||||
url: ${{ env.STATUS_URL }}
|
url: ${{ env.STATUS_URL }}
|
||||||
method: 'POST'
|
method: 'POST'
|
||||||
customHeaders: '{"Content-Type": "application/json"}'
|
customHeaders: '{"Content-Type": "application/json"}'
|
||||||
data: '{"uuid": "${{ inputs.uuid }}", "status": "Success"}'
|
data: '{"uuid": "${{ inputs.uuid }}", "status": "Finished ${{ matrix.job.arch }}"}'
|
||||||
|
|
||||||
- name: failed
|
- name: failed
|
||||||
if: failure()
|
if: failure()
|
||||||
@@ -644,4 +636,16 @@ jobs:
|
|||||||
url: ${{ env.STATUS_URL }}
|
url: ${{ env.STATUS_URL }}
|
||||||
method: 'POST'
|
method: 'POST'
|
||||||
customHeaders: '{"Content-Type": "application/json"}'
|
customHeaders: '{"Content-Type": "application/json"}'
|
||||||
data: '{"uuid": "${{ inputs.uuid }}", "status": "Generation cancelled, try again"}'
|
data: '{"uuid": "${{ inputs.uuid }}", "status": "Generation cancelled, try again"}'
|
||||||
|
|
||||||
|
deploy:
|
||||||
|
needs: build-rustdesk-linux
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Report Status
|
||||||
|
uses: fjogeleit/http-request-action@v1
|
||||||
|
with:
|
||||||
|
url: ${{ env.STATUS_URL }}
|
||||||
|
method: 'POST'
|
||||||
|
customHeaders: '{"Content-Type": "application/json"}'
|
||||||
|
data: '{"uuid": "${{ inputs.uuid }}", "status": "Success"}'
|
||||||
Reference in New Issue
Block a user