diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f911378d8..8fdba7f9e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -213,28 +213,3 @@ jobs: name: packages with: path: "*.nupkg" - nugetie: - name: Publish Nuget IE - if: github.ref == 'refs/heads/master' || contains(github.ref, 'hotfix/') || contains(github.ref, 'release/') - needs: [lint, format, compile, build, unittest, endtoendemulator, endtoendhosted, accessibility] - runs-on: ubuntu-latest - env: - NUGET_SOURCE: ${{ secrets.NUGET_SOURCE }} - AZURE_DEVOPS_PAT: ${{ secrets.AZURE_DEVOPS_PAT }} - steps: - - uses: nuget/setup-nuget@v1 - with: - nuget-api-key: ${{ secrets.NUGET_API_KEY }} - - name: Download Dist Folder - uses: actions/download-artifact@v2 - with: - name: dist - - run: cp ./configs/prod.json config.json - - run: sed -i 's/Azure.Cosmos.DB.Data.Explorer/Azure.Cosmos.DB.Data.Explorer.IE/g' DataExplorer.nuspec - - run: nuget sources add -Name "ADO" -Source "$NUGET_SOURCE" -UserName "GitHub" -Password "$AZURE_DEVOPS_PAT" - - run: nuget pack -Version "2.0.0-github-${GITHUB_SHA}" - - run: nuget push -Source "$NUGET_SOURCE" -ApiKey Az *.nupkg - - uses: actions/upload-artifact@v2 - name: packages - with: - path: "*.nupkg"