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

Prepare Release

Prepare Release #3

Workflow file for this run

name: "[Prototype] Prepare Release"
on:
workflow_dispatch:
jobs:
deploy:
name: "[Prototype] Prepare Release"
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: Run create snippet defenition script
run: .\pnp-powershell-extension\scripts\createSnippetDefenition.ps1 -PathToWorkspace ".\"
shell: pwsh
continue-on-error: false
- name: Run update package version script
run: .\pnp-powershell-extension\scripts\updatePackageVersion.ps1 -PathToWorkspace ".\"
shell: pwsh
continue-on-error: false
- name: Install dependencies
run: npm run install:all
working-directory: cli-for-microsoft-365-extension
- name: Build
run: npm run vscode:prepublish
working-directory: cli-for-microsoft-365-extension
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with:
path: pnp-powershell-extension
commit-message: prepare release
branch: prepare-release
title: Prepare Release
body: Prepare Release
...