diff --git a/.github/workflows/publish-dev.yml b/.github/workflows/publish-dev.yml index 48770123a..7c72aeed7 100644 --- a/.github/workflows/publish-dev.yml +++ b/.github/workflows/publish-dev.yml @@ -80,24 +80,24 @@ jobs: asset_path: ${{ join(fromJson(steps.dev-s3-upload.outputs.results).*.Key, ' ') }} # Publish dev to staging NRDB - publish-dev-nr: - needs: [publish-dev-to-s3] - runs-on: ubuntu-latest - timeout-minutes: 30 - defaults: - run: - shell: bash - steps: - - uses: actions/checkout@v3 - with: - ref: main - - uses: actions/setup-node@v3 - with: - node-version: lts/* - - name: Publish dev loader to nr - uses: ./.github/actions/nr-upload-dev - with: - nr_stage_api_key: ${{ secrets.NR_API_KEY_STAGING }} + # publish-dev-nr: + # needs: [publish-dev-to-s3] + # runs-on: ubuntu-latest + # timeout-minutes: 30 + # defaults: + # run: + # shell: bash + # steps: + # - uses: actions/checkout@v3 + # with: + # ref: main + # - uses: actions/setup-node@v3 + # with: + # node-version: lts/* + # - name: Publish dev loader to nr + # uses: ./.github/actions/nr-upload-dev + # with: + # nr_stage_api_key: ${{ secrets.NR_API_KEY_STAGING }} # Rebuild and publish the dev environment A/B script publish-dev-ab: diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 1fbb99ac4..d8453de6e 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -169,31 +169,31 @@ jobs: loader_version: ${{ steps.agent-loader-version.outputs.results }} # Publish the loaders to nr stage - publish-to-nr-stage: - needs: [ publish-prod-to-s3 ] - runs-on: ubuntu-latest - timeout-minutes: 30 - defaults: - run: - shell: bash - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: lts/* - - name: Get version number - id: agent-loader-version - run: echo "results=$(cat package.json | jq -r '.version')" >> $GITHUB_OUTPUT - - name: Publish loader to nr - uses: ./.github/actions/nr-upload - with: - nr_stage_api_key: ${{ secrets.NR_API_KEY_STAGING }} - loader_version: ${{ steps.agent-loader-version.outputs.results }} - environment: stage - - name: Verify loaders in nr - uses: ./.github/actions/nr-verify - with: - loader_version: ${{ steps.agent-loader-version.outputs.results }} + # publish-to-nr-stage: + # needs: [ publish-prod-to-s3 ] + # runs-on: ubuntu-latest + # timeout-minutes: 30 + # defaults: + # run: + # shell: bash + # steps: + # - uses: actions/checkout@v3 + # - uses: actions/setup-node@v3 + # with: + # node-version: lts/* + # - name: Get version number + # id: agent-loader-version + # run: echo "results=$(cat package.json | jq -r '.version')" >> $GITHUB_OUTPUT + # - name: Publish loader to nr + # uses: ./.github/actions/nr-upload + # with: + # nr_stage_api_key: ${{ secrets.NR_API_KEY_STAGING }} + # loader_version: ${{ steps.agent-loader-version.outputs.results }} + # environment: stage + # - name: Verify loaders in nr + # uses: ./.github/actions/nr-verify + # with: + # loader_version: ${{ steps.agent-loader-version.outputs.results }} # Publish the agent to npmjs.org publish-npm: