Skip to content

Commit 5196ba2

Browse files
authored
Merge branch 'main' into dependabot/github_actions/actions/upload-artifact-6
2 parents 989115b + bdb0890 commit 5196ba2

File tree

7 files changed

+31
-48
lines changed

7 files changed

+31
-48
lines changed

.azure-pipelines/release.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,14 @@ extends:
6565
filePath: './scripts/copy-readme.ps1'
6666

6767

68-
# Pack Typescript sdk packages
69-
- script: npm pack --pack-destination=$(Build.ArtifactStagingDirectory) --workspaces
68+
# Pack Typescript sdk packages (excludes private packages like tests)
69+
- script: |
70+
for dir in packages/*/; do
71+
pkg_name=$(basename "$dir")
72+
if [ "$pkg_name" != "msgraph-sdk-tests" ]; then
73+
npm pack --pack-destination=$(Build.ArtifactStagingDirectory) -w "$dir"
74+
fi
75+
done
7076
displayName: 'Generate npm packages of the Typescript msgraph sdk'
7177
workingDirectory: '$(Build.SourcesDirectory)'
7278

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
# Single version should work for compilation testing
2626

2727
steps:
28-
- uses: actions/checkout@v5
28+
- uses: actions/checkout@v6
2929
- name: Use Node.js ${{ matrix.node-version }}
3030
uses: actions/setup-node@v6
3131
with:

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646

4747
steps:
4848
- name: Checkout repository
49-
uses: actions/checkout@v5
49+
uses: actions/checkout@v6
5050

5151
# Initializes the CodeQL tools for scanning.
5252
- name: Initialize CodeQL

.github/workflows/release-please-gha.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
release:
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v5
22+
- uses: actions/checkout@v6
2323

2424
- name: Generate GitHub App token
2525
id: app-token

.github/workflows/validate-public-api-surface.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
build:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
- uses: microsoftgraph/kiota-dom-export-diff-tool/export@main
2020
id: generatePatch
2121
- uses: microsoftgraph/kiota-dom-export-diff-tool/tool@main

package-lock.json

Lines changed: 19 additions & 41 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"name": "root",
3-
"private": true,
43
"workspaces": [
54
"packages/*"
65
],

0 commit comments

Comments
 (0)