Skip to content

Commit

Permalink
Updates version to 10.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam-it authored and milanholemans committed Aug 31, 2024
1 parent 39e78b2 commit 7dfc31a
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Release v9
name: Release v10

on:
push:
branches: [v9]
branches: [v10]

jobs:
build:
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
name: coverage-${{ matrix.os }}-${{ matrix.nodeRun }}
path: coverage.tar

publish_v9:
publish_v10:
if: github.repository_owner == 'pnp'
needs: test
runs-on: ubuntu-latest
Expand Down Expand Up @@ -141,8 +141,8 @@ jobs:
run: npm ci
- name: Stamp beta to package version
run: node scripts/update-package-version.js $GITHUB_SHA
- name: Publish @nine
run: npm publish --tag nine --access public --provenance
- name: Publish @ten
run: npm publish --tag ten --access public --provenance
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
- name: Compress output
Expand All @@ -156,7 +156,7 @@ jobs:

deploy_docker:
if: github.repository_owner == 'pnp'
needs: publish_v9
needs: publish_v10
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -184,18 +184,18 @@ jobs:
run: |
echo "version=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT
- name: Wait for npm publish
run: node scripts/wait-npm-publish.js nine ${{ steps.package_version.outputs.version }}
run: node scripts/wait-npm-publish.js ten ${{ steps.package_version.outputs.version }}
- name: Build and push ${{ steps.package_version.outputs.version }}
uses: docker/build-push-action@v5
with:
push: true
tags: m365pnp/cli-microsoft365:${{ steps.package_version.outputs.version }}
build-args: |
CLI_VERSION=${{ steps.package_version.outputs.version }}
- name: Build and push nine
- name: Build and push ten
uses: docker/build-push-action@v5
with:
push: true
tags: m365pnp/cli-microsoft365:nine
tags: m365pnp/cli-microsoft365:ten
build-args: |
CLI_VERSION=${{ steps.package_version.outputs.version }}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# v9 Upgrade Guidance
# v10 Upgrade Guidance

The v9 of CLI for Microsoft 365 introduces several breaking changes. To help you upgrade to the latest version of CLI for Microsoft 365, we've listed those changes along with any actions you may need to take.
The v10 of CLI for Microsoft 365 introduces several breaking changes. To help you upgrade to the latest version of CLI for Microsoft 365, we've listed those changes along with any actions you may need to take.

## App

Expand Down
2 changes: 1 addition & 1 deletion docs/src/config/sidebars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
home: [
'index',
'v9-upgrade-guidance',
'v10-upgrade-guidance',
'v8-upgrade-guidance',
'v7-upgrade-guidance',
'v6-upgrade-guidance',
Expand Down
4 changes: 2 additions & 2 deletions npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pnp/cli-microsoft365",
"version": "9.0.0",
"version": "10.0.0",
"description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
"license": "MIT",
"main": "./dist/api.js",
Expand Down

0 comments on commit 7dfc31a

Please sign in to comment.