build(deps): Bump @types/node from 22.5.5 to 22.7.4 (#7680) #603
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 next version docs' | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- '.husky/**' | |
- '.codesandbox/**' | |
- '.github/**' | |
- '!.github/actions/**' | |
- '.github/actions/**/*.yml' | |
- '**/*.md' | |
- '!packages/vkui/src/**/*.md' | |
- '!styleguide/pages/**/*.md' | |
- '**/__image_snapshots__/*.png' | |
env: | |
AWS_S3_URL: https://${{ vars.AWS_BUCKET }}.${{ vars.AWS_ENDPOINT }} | |
concurrency: | |
group: deploy-docs-${{ github.ref_name }} | |
cancel-in-progress: true | |
jobs: | |
changed_files: | |
runs-on: ubuntu-latest | |
name: Detect what files changed | |
outputs: | |
docs_styleguide: ${{ steps.changes.outputs.docs_styleguide }} | |
docs_storybook: ${{ steps.changes.outputs.docs_storybook }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Find changes | |
uses: dorny/paths-filter@v3 | |
id: changes | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
filters: .github/file-filters.yml | |
build_and_deploy_styleguide: | |
if: ${{ !cancelled() && needs.changed_files.outputs.docs_styleguide == 'true' }} | |
runs-on: ubuntu-latest | |
name: Deploy docs (styleguide) | |
needs: changed_files | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Node setup | |
uses: ./.github/actions/node-setup | |
- name: Build | |
run: yarn docs:styleguide:build | |
- name: Upload to S3 | |
id: deploy | |
uses: VKCOM/gh-actions/VKUI/s3@main | |
with: | |
awsAccessKeyId: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
awsSecretAccessKey: ${{ secrets.AWS_SECRET_KEY }} | |
awsBucket: ${{ vars.AWS_BUCKET }} | |
awsEndpoint: https://${{ vars.AWS_ENDPOINT }} | |
command: upload | |
commandUploadSrc: styleguide/dist | |
commandUploadDist: next/styleguide | |
- name: Create doc url | |
if: ${{ steps.deploy.outcome == 'success' }} | |
id: url | |
run: echo "${{ env.AWS_S3_URL }}/next/styleguide/index.html" | |
build_and_deploy_storybook: | |
if: ${{ !cancelled() && needs.changed_files.outputs.docs_storybook == 'true' }} | |
runs-on: ubuntu-latest | |
name: Deploy docs (storybook) | |
needs: changed_files | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Node setup | |
uses: ./.github/actions/node-setup | |
- name: Build | |
run: yarn docs:storybook:build | |
- name: Upload to S3 | |
id: deploy | |
uses: VKCOM/gh-actions/VKUI/s3@main | |
with: | |
awsAccessKeyId: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
awsSecretAccessKey: ${{ secrets.AWS_SECRET_KEY }} | |
awsBucket: ${{ vars.AWS_BUCKET }} | |
awsEndpoint: https://${{ vars.AWS_ENDPOINT }} | |
command: upload | |
commandUploadSrc: packages/vkui/storybook-static | |
commandUploadDist: next/storybook | |
- name: Create doc url | |
if: ${{ steps.deploy.outcome == 'success' }} | |
id: url | |
run: echo "${{ env.AWS_S3_URL }}/next/storybook/index.html" |