From 4c7c156cdefa1e2a537a03cec8337096ae2d31ca Mon Sep 17 00:00:00 2001 From: fewensa <37804932+fewensa@users.noreply.github.com> Date: Tue, 2 Apr 2024 10:45:07 +0800 Subject: [PATCH] Clean tracing node deploy (#1466) --- .github/workflows/release.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7e488d21d..324b79654 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -285,32 +285,3 @@ jobs: generate_release_notes: true token: ${{ secrets.GITHUB_TOKEN }} prerelease: ${{ startsWith(github.ref, 'refs/tags/pango') }} - - deploy-tracing-nodes: - name: Deploy tracing nodes - runs-on: ubuntu-latest - needs: [publish-github-release] - steps: - - name: Tag - uses: olegtarasov/get-tag@v2.1 - - name: Deploy tracing nodes - run: | - IS_MAINNET=${{ env.SKIP_BUILD != 'true' && startsWith(github.ref, 'refs/tags/v') }} - IS_TESTNET=${{ env.SKIP_BUILD != 'true' && startsWith(github.ref, 'refs/tags/pango') }} - - if [ "$IS_MAINNET" == "true" ]; then - TYPE=mainnets - elif [ "$IS_TESTNET" == "true" ]; then - TYPE=testnets - fi - - echo $TYPE - - if [ "$TYPE" != "" ]; then - GITHUB_TOKEN=${{ secrets.GH_TKN_DARWINIA }} gh workflow run \ - trigger-tracing-node.yml \ - --ref=main \ - --repo=darwinia-network/devops \ - --raw-field=type=$TYPE \ - --raw-field="version=$GIT_TAG_NAME" - fi