Skip to content

fix(deps): update ui components (#1206) #777

fix(deps): update ui components (#1206)

fix(deps): update ui components (#1206) #777

Workflow file for this run

name: 'Continuous Delivery'
on:
push:
branches:
- main
workflow_dispatch:
concurrency:
group: cd-${{ github.ref }}
cancel-in-progress: true
env:
# 手動実行か否か
IS_DISPATCH: ${{ contains(fromJSON('["workflow_dispatch"]'), github.event_name) }}
jobs:
release:
uses: ./.github/workflows/wc-release.yml
with:
gh-app-id: ${{ vars.BOT_APP_ID }}
secrets:
gh-app-private-key: ${{ secrets.BOT_PRIVATE_KEY }}
filter:
permissions:
contents: read
runs-on: ubuntu-24.04
outputs:
deploy: ${{ steps.changes.outputs.deploy }}
steps:
# https://github.com/marketplace/actions/checkout
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
# https://github.com/marketplace/actions/paths-changes-filter
- name: Paths Changes Filter
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
id: changes
with:
filters: |
deploy:
- 'apps/**/*'
- 'packages/**/*'
- 'package.json'
- name: Output Needs
id: needs
run: |
echo "deploy=${{ env.IS_DISPATCH == 'true' || steps.changes.outputs.deploy == 'true' }}" >> "$GITHUB_OUTPUT"
deploy:
permissions:
contents: read
deployments: write
runs-on: ubuntu-24.04
needs: filter
if: needs.filter.outputs.deploy == 'true'
steps:
# https://github.com/marketplace/actions/checkout
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
# https://github.com/marketplace/actions/mise-action
- name: mise action
uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10
# https://github.com/marketplace/actions/vercel-action
- name: Deploy to Vercel
uses: amondnet/vercel-action@16e87c0a08142b0d0d33b76aeaf20823c381b9b9 # v25.2.0
id: vercel
with:
vercel-token: ${{ secrets.VERCEL_TOKEN }}
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }}
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID}}
vercel-version: "32.6.0"
- name: Lighthouse
uses: foo-software/[email protected]
with:
gitHubAccessToken: ${{ secrets.GITHUB_TOKEN }}
urls: ${{ steps.vercel.outputs.preview-url }}