From 3e170454bbaa31935d3fb414f7890052d1cb25cd Mon Sep 17 00:00:00 2001 From: Adrian Date: Fri, 9 Jan 2026 14:39:39 -0600 Subject: [PATCH 1/2] removing publish step since azure is now in charge of that --- .github/workflows/build.yml | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4db8ad9e8ea..a8b404fa339 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -62,25 +62,4 @@ jobs: run: exit 0 - name: One or more build matrix options failed if: ${{ contains(needs.*.result, 'failure') }} - run: exit 1 - - publish-npm: - if: startsWith(github.ref, 'refs/tags/') - needs: build - environment: - name: production_feed - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v5 - - uses: actions/setup-node@v6 - with: - node-version: 22 - registry-url: https://registry.npmjs.org/ - - name: Copy README.md to packages - shell: pwsh - run: ./scripts/copy-readme.ps1 - - run: npm ci - - run: npm run build - - run: npx lerna publish from-package --no-push --yes - env: - NODE_AUTH_TOKEN: ${{secrets.npm_token}} \ No newline at end of file + run: exit 1 \ No newline at end of file From d346cae89d554eaa11f3e89e9d7f5cd8ed20cec4 Mon Sep 17 00:00:00 2001 From: Adrian Date: Fri, 9 Jan 2026 14:54:07 -0600 Subject: [PATCH 2/2] removing test --- .azure-pipelines/release.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.azure-pipelines/release.yml b/.azure-pipelines/release.yml index ee985344635..ea016c23810 100644 --- a/.azure-pipelines/release.yml +++ b/.azure-pipelines/release.yml @@ -58,13 +58,7 @@ extends: - script: npm run build displayName: 'Build project' workingDirectory: '$(Build.SourcesDirectory)' - - # excluding test for now since it requires a tenant and secrets to run - # TODO: create secrets to the pipeline similar to https://github.com/microsoftgraph/msgraph-sdk-typescript/settings/secrets/actions and the build.yml file - # - script: npm run test - # displayName: 'Run tests' - # workingDirectory: '$(Build.SourcesDirectory)' - + - task: PowerShell@2 displayName: 'Copy README.md to packages' inputs: