V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
linzhe141
V2EX  ›  Node.js

github action 的 pnpm --filter 和本地执行不一致?

  •  
  •   linzhe141 · 93 天前 · 793 次点击
    这是一个创建于 93 天前的主题,其中的信息可能已经有所发展或是发生改变。

    Release.yml

    name: Release
    
    on:
      push:
        tags:
          - 'v*'
    
    jobs:
      release:
        name: Release
        runs-on: ubuntu-latest
    
        steps:
          - name: Checkout Branch
            uses: actions/checkout@v4
    
          - name: Install pnpm
            uses: pnpm/action-setup@v2
            with:
              version: 8
    
          - name: Use Node.js 20
            uses: actions/setup-node@v4
            with:
              node-version: 20
              cache: pnpm
    
          - name: Display dir tree
            run: pnpm run buildBefore
    
          - name: Install Dependencies
            run: pnpm install
    
          - name: Build Packages
            run: pnpm run build
    
          - name: Publish to npm
            id: changesets
            uses: changesets/action@v1
            with:
              publish: pnpm changeset publish
            env:
              GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
              NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
    
    

    github actions log

    > @ build /home/runner/work/linzhe-tools/linzhe-tools
    > rm -rf dist && pnpm run -r --filter ./packages/* build:src && pnpm run build:Dist
    
    None of the selected packages has a "./packages/linzhe-tools" script
    

    本地 log

    > @ build D:\study\linzhe-tools
    > rm -rf dist && pnpm run -r --filter ./packages/* build:src && pnpm run build:Dist
    
    Scope: 3 of 6 workspace projects
    

    github actions 会出现一个莫名其妙的脚本“./packages/linzhe-tools”,说找不到

    2 条回复    2024-01-28 20:11:55 +08:00
    linzhe141
        1
    linzhe141  
    OP
       93 天前
    pnpm run -r --filter ./packages/* build:src 改成 pnpm run -r --filter=./packages/* build:src ,filter 的参数改成“=”就可以了🤯
    kemchenj
        2
    kemchenj  
       90 天前
    看起来像是 ./packages/* 被 shell 展开了?加了个双引号括住它试试

    pnpm run -r --filter "./packages/*" build:src
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   1727 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 28ms · UTC 16:28 · PVG 00:28 · LAX 09:28 · JFK 12:28
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.