- Added SPFx package release workflow #30
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Modern Search Core Components - Storybook | |
env: | |
ENV_AzDeployAppId: ${{ secrets.ENV_AzDeployAppId }} | |
ENV_AzDeployAppCertificateValue: ${{ secrets.ENV_AzDeployAppCertificateValue }} | |
ENV_AzDeployTenantId: ${{ secrets.ENV_AzDeployTenantId }} | |
ENV_AzDeploySubcriptionId: ${{ secrets.ENV_AzDeploySubcriptionId }} | |
ENV_AzResourceGroupName: ${{ secrets.ENV_AzResourceGroupName }} | |
ENV_AzStorageAccountName: ${{ secrets.ENV_AzStorageAccountName }} | |
ENV_AzBlobContainerName: ${{ secrets.ENV_AzBlobContainerName }} | |
ENV_AzBlobContainerWebName: ${{ secrets.ENV_AzBlobContainerWebName }} | |
on: | |
push: | |
branches: | |
- main | |
- 'release/**' | |
- develop | |
jobs: | |
version: | |
runs-on: ubuntu-latest | |
outputs: | |
majorMinorPatch: ${{ steps.setoutputs.outputs.majorMinorPatch }} | |
semver: ${{ steps.setoutputs.outputs.semver }} | |
steps: | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install GitVersion | |
uses: gittools/actions/gitversion/setup@v0 | |
with: | |
versionSpec: '5.x' | |
- name: Determine Version | |
id: gitversion | |
uses: gittools/actions/gitversion/execute@v0 | |
- name: Set outputs | |
id: setoutputs | |
run: | | |
echo "majorMinorPatch=$GITVERSION_MAJORMINORPATCH" >> "$GITHUB_OUTPUT" | |
echo "semver=$GITVERSION_SEMVER" >> "$GITHUB_OUTPUT" | |
deploy-storybook: | |
runs-on: ubuntu-latest | |
needs: version | |
env: | |
VERSION: ${{ needs.version.outputs.semver }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Bicep | |
shell: sh | |
run: | | |
curl -Lo bicep https://github.com/Azure/bicep/releases/latest/download/bicep-linux-musl-x64 | |
chmod +x ./bicep | |
mv ./bicep /usr/local/bin/bicep | |
- name: Install Azure PowerShell modules | |
shell: pwsh | |
run: | | |
Install-Module Az.Accounts -RequiredVersion 2.7.3 -Force | |
Install-Module Az.Resources -RequiredVersion 5.4.0 -Force | |
Install-Module Az.Storage -RequiredVersion 5.2.0 -Force | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
run_install: false | |
- name: Get pnpm store directory | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | |
- uses: actions/cache@v3 | |
name: Setup pnpm cache | |
with: | |
path: ${{ env.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Install dependencies | |
run: pnpm install | |
- name: Run pre-requisites tasks | |
run: | | |
pnpm i -g gulp | |
cd ./packages/components | |
gulp set-version --semver $VERSION | |
- name: Build Storybook | |
run: npx lerna run docs:build --scope=pnp-modern-search-core | |
- name: Run PowerShell deployment | |
shell: pwsh | |
run: | | |
./deploy/deploy-docs.ps1 -Env CI -Version "$env:VERSION" | |
deploy-mkdocs: | |
runs-on: ubuntu-latest | |
needs: version | |
env: | |
VERSION: ${{ needs.version.outputs.semver }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- name: Deploy documentation | |
run: | | |
pip install markdown-include | |
pip install mkdocs-git-revision-date-localized-plugin | |
pip install mkdocs-material==7.2.4 | |
mkdocs gh-deploy --force | |