diff --git a/.github/workflows/generator-linux.yml b/.github/workflows/generator-linux.yml index 254a577..6da9222 100644 --- a/.github/workflows/generator-linux.yml +++ b/.github/workflows/generator-linux.yml @@ -110,14 +110,6 @@ jobs: deb_arch: arm64, 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: - name: Export GitHub Actions cache environment variables uses: actions/github-script@v6 @@ -626,7 +618,7 @@ jobs: url: ${{ env.STATUS_URL }} method: 'POST' customHeaders: '{"Content-Type": "application/json"}' - data: '{"uuid": "${{ inputs.uuid }}", "status": "Success"}' + data: '{"uuid": "${{ inputs.uuid }}", "status": "Finished ${{ matrix.job.arch }}"}' - name: failed if: failure() @@ -644,4 +636,16 @@ jobs: url: ${{ env.STATUS_URL }} method: 'POST' customHeaders: '{"Content-Type": "application/json"}' - data: '{"uuid": "${{ inputs.uuid }}", "status": "Generation cancelled, try again"}' \ No newline at end of file + 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"}' \ No newline at end of file