Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Github action failing when running auto shipit #2481

Open
Snivio opened this issue Nov 14, 2024 · 0 comments
Open

Github action failing when running auto shipit #2481

Snivio opened this issue Nov 14, 2024 · 0 comments
Labels
bug Something isn't working

Comments

@Snivio
Copy link

Snivio commented Nov 14, 2024

Im using the following workflow

name: Release

on: [push, workflow_dispatch]

jobs:
  release:
    name: Release
    runs-on: ubuntu-latest
    permissions:
      contents: read
      issues: read
      packages: write
      pull-requests: write
    #    if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
    steps:
      - uses: actions/checkout@v2
        with:
          fetch-depth: 0

      - name: Prepare repository
        run: git fetch --prune

      - name: Unset header
        run: git config --local --unset http.https://github.com/.extraheader

      - name: Use Node
        uses: actions/setup-node@v3
        with:
          node-version-file: .nvmrc
          registry-url: "https://npm.pkg.github.com"
          scope: "@********"

      - name: Cache node modules
        uses: actions/cache@v1
        with:
          path: node_modules
          key: yarn-deps-${{ hashFiles('yarn.lock', 'package-lock.json', 'package.json') }}
          restore-keys: |
            yarn-deps-${{ hashFiles('yarn.lock', 'package-lock.json', 'package.json') }}

      - name: Create Release
        env:
          GITHUB_TOKEN: ${{ secrets.GH_REPO_PACKAGES_PAT }}
          NODE_AUTH_TOKEN: ${{ secrets.GH_REPO_PACKAGES_PAT }}
        run: |
          yarn install --frozen-lockfile
          yarn build
          npx auto@11 shipit

but the action fails with this

Error: Running command 'npx' with args [lerna, publish, 1.4.7--canary.119.47fcfe8.0, --dist-tag, canary, --registry, https://registry.npmjs.org/, --force-publish, --yes, --no-git-reset, --no-git-tag-version, --exact, --no-verify-access] failed
.
.
.
.
.
Error: Process completed with exit code 1.

any suggestions for different config with auto or lerna

lerna.json

{
  "version": "1.4.6",
  "packages": [
    "packages/*"
  ],
  "npmClient": "yarn",
  "publishConfig": {
    "access": "public"
  },
  "lerna": "2.9.0"
}

and package.json

{
  "name": "amplience",
  "version": "1.0.0",
  "description": "",
  "private": true,
  "workspaces": [
    "packages/*"
  ],
  "scripts": {
    "build": "lerna run build",
    "clean-modules": "rimraf node_modules"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "@types/express": "4.17.9",
    "@types/node": "14.14.11",
    "auto": "10.46.0",
    "lerna": "7.2.0",
    "nodemon": "2.0.22",
    "tslint": "6.1.3",
    "typescript": "4.9.5"
  },
  "dependencies": {}
}

@Snivio Snivio added the bug Something isn't working label Nov 14, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant