Skip to content
This repository has been archived by the owner on May 18, 2024. It is now read-only.

Commit

Permalink
Adds new pipline to prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam-it committed May 18, 2024
1 parent d75d22e commit 0197af1
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 11 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: "[Prototype] Prepare Release"

on:
workflow_dispatch:

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
- name: Checkout PnP PowerShell VS Code Extension
uses: actions/checkout@v4
with:
path: pnp-powershell-extension
- name: Checkout PnP PowerShell
uses: actions/checkout@v4
with:
repository: pnp/powershell
path: powershell
- name: Checkout PnP Script Samples
uses: actions/checkout@v4
with:
repository: pnp/script-samples
path: script-samples
- name: Run create script samples script
run: .\pnp-powershell-extension\scripts\createScriptSampleDefenition.ps1 -PathToWorkspace ".\"
shell: pwsh
continue-on-error: false
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
path: pnp-powershell-extension
commit-message: prepare release
branch: prepare-release
title: Prepare Release
body: Prepare Release
...
22 changes: 11 additions & 11 deletions scripts/createScriptSampleDefenition.ps1
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
param ($scriptSampleFolderPath)
param (
[Parameter(Mandatory = $true)]
[string]$PathToWorkspace
)

if ($null -eq $scriptSampleFolderPath -or $scriptSampleFolderPath -eq "") {
write-host "Please pass path to script samples from pnp/script-sample repo"
exit
}

$allSamples = Get-ChildItem -Path "$scriptSampleFolderPath\scripts\**\sample.json" -Recurse -Force
$allSamples = Get-ChildItem -Path "$PathToWorkspace\script-samples\scripts\**\sample.json" -Recurse -Force

[hashtable]$sampleModel = @{}
$samples = @()
Expand All @@ -31,10 +29,10 @@ foreach ($sample in $allSamples) {
$rawUrl = $rawUrl.Replace('.html', '.md')

$sampleAuthors = @()
foreach($author in $sampleJson.authors) {
foreach ($author in $sampleJson.authors) {
$sampleAuthors += [pscustomobject]@{
name = $author.name;
pictureUrl = $author.pictureUrl;
name = $author.name;
pictureUrl = $author.pictureUrl;
}
}

Expand All @@ -53,7 +51,9 @@ foreach ($sample in $allSamples) {

$sampleModel.Add('samples', $samples)
$orderedSampleModel = [ordered]@{}

foreach ($Item in ($sampleModel.GetEnumerator() | Sort-Object -Property Key)) {
$orderedSampleModel[$Item.Key] = $Item.Value
}
New-Object -TypeName psobject -Property $orderedSampleModel | ConvertTo-Json -Depth 10 | Out-File "..\data\samples.json"

New-Object -TypeName psobject -Property $orderedSampleModel | ConvertTo-Json -Depth 10 | Out-File "$PathToWorkspace\pnp-powershell-extension\data\samples.json"

0 comments on commit 0197af1

Please sign in to comment.