Skip to content

Commit bac8a25

Browse files
georgendGeorge
andauthored
Generate profiles in same Stage as Generate and Build Service Modules (#397)
* Bump to v1.0.1 * Generate Profiles in Service Modules Build Stage * Remove Profiles Build Step Co-authored-by: George <[email protected]>
1 parent abaf606 commit bac8a25

File tree

37 files changed

+43
-42
lines changed

37 files changed

+43
-42
lines changed

.azure-pipelines/generate-modules-template.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,14 @@ jobs:
4343
steps:
4444
- template: ./install-tools-template.yml
4545

46+
- task: PowerShell@2
47+
displayName: 'Generate Profiles'
48+
continueOnError: false
49+
inputs:
50+
targetType: 'filePath'
51+
pwsh: true
52+
filePath: $(System.DefaultWorkingDirectory)/tools/GenerateProfiles.ps1
53+
4654
- task: PowerShell@2
4755
displayName: 'Build Auth Modules'
4856
inputs:

.azure-pipelines/integrated-pipeline.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,6 @@ stages:
5757
- template: ./download-openapidocs-template.yml
5858
parameters:
5959
BUILDNUMBER: $(BUILDNUMBER)
60-
61-
- stage: GenerateProfiles
62-
displayName: 'Generate Profiles'
63-
jobs:
64-
- job: GenerateProfiles
65-
steps:
66-
- template: ./generate-profiles-template.yml
6760

6861
- stage: GenerateAuthModule
6962
displayName: 'Generate Authentication Module (Microsoft.Graph.Authentication)'

config/ModuleMetadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010
"tags": "MicrosoftGraph;Microsoft;Office365;Graph;PowerShell;GraphServiceClient;Outlook;OneDrive;AzureAD;GraphAPI;Productivity;SharePoint;Intune;SDK;",
1111
"releaseNotes": "See https://aka.ms/GraphPowerShell-Release.",
1212
"assemblyOriginatorKeyFile": "35MSSharedLib1024.snk",
13-
"version": "1.0.0"
13+
"version": "1.0.1"
1414
}

src/Applications/Applications/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,6 @@ directive:
7373
### Versioning
7474
7575
``` yaml
76-
module-version: 1.0.0
76+
module-version: 1.0.1
7777
release-notes: See https://aka.ms/GraphPowerShell-Release.
7878
```

src/Authentication/Authentication/Microsoft.Graph.Authentication.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = './Microsoft.Graph.Authentication.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '1.0.0'
15+
ModuleVersion = '1.0.1'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'

src/Bookings/Bookings/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ subject-prefix: ''
3535
### Versioning
3636
3737
``` yaml
38-
module-version: 1.0.0
38+
module-version: 1.0.1
3939
release-notes: See https://aka.ms/GraphPowerShell-Release.
4040
```

src/Calendar/Calendar/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@ directive:
5252
### Versioning
5353

5454
``` yaml
55-
module-version: 1.0.0
55+
module-version: 1.0.1
5656
release-notes: See https://aka.ms/GraphPowerShell-Release.
5757
```

src/ChangeNotifications/ChangeNotifications/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ subject-prefix: ''
3434
### Versioning
3535
3636
``` yaml
37-
module-version: 1.0.0
37+
module-version: 1.0.1
3838
release-notes: See https://aka.ms/GraphPowerShell-Release.
3939
```

src/CloudCommunications/CloudCommunications/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ subject-prefix: ''
3535
### Versioning
3636
3737
``` yaml
38-
module-version: 1.0.0
38+
module-version: 1.0.1
3939
release-notes: See https://aka.ms/GraphPowerShell-Release.
4040
```

src/Compliance/Compliance/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ subject-prefix: ''
3434
### Versioning
3535
3636
``` yaml
37-
module-version: 1.0.0
37+
module-version: 1.0.1
3838
release-notes: See https://aka.ms/GraphPowerShell-Release.
3939
```

0 commit comments

Comments
 (0)