chore(deps): update all non-major dependencies #745
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: Publish Any Commit | |
on: [push] | |
jobs: | |
check-changes: | |
runs-on: ubuntu-latest | |
outputs: | |
src: ${{ steps.changes.outputs.src }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Check if there are changes | |
uses: dorny/paths-filter@v3 | |
id: changes | |
with: | |
filters: | | |
src: | |
- 'packages/cli/src/**' | |
- 'packages/cli/package.json' | |
- 'pnpm-lock.yaml' | |
build: | |
needs: check-changes | |
if: needs.check-changes.outputs.src == 'true' | |
runs-on: ubuntu-latest | |
env: | |
NUXT_UI_PRO_LICENSE: ${{ secrets.NUXT_UI_PRO_LICENSE }} | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ vars.TURBO_TEAM }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: latest | |
run_install: true | |
- name: 🚀 Prepare | |
run: pnpm run dev:prepare | |
- name: 🛠️ Build | |
run: pnpm run build | |
- name: 🚀 Continuous Release | |
run: npx pkg-pr-new publish './packages/cli' |