Skip to content

issue deploying Git author Unknown must have access to the team #290

@sebastian-bearing

Description

@sebastian-bearing
---
name: "vercel deploy"
description: "deploy on vercel"
author: "Bearing"
inputs:
  NPMRC_FILE:
    description: "npmrc file with auth"
    required: true
  VERCEL_TOKEN:
    description: "Vercel token"
    required: true
  GITHUB_TOKEN:
    required: true
    description: "Authentication token to be used to call GITHUB Apis"
  WORKING_DIRECTORY:
    description: "project directory"
    required: false
    default: "."
  VERCEL_PROJECT_ID:
    description: "Vercel project id"
    required: true
  VERCEL_ORG_ID:
    description: "Vercel org id"
  VERCEL_ARGS:
    description: "Vercel extra args"
    required: false
    default: ""
  VERCEL_VERSION:
    description: Vercel version
    required: false
    default: "48.1.6"
runs:
  using: "composite"
  steps:
    - name: Check out repository
      uses: actions/checkout@v5
    - name: Set up .npmrc
      run: echo "${{ inputs.NPMRC_FILE }}" >> ${{ inputs.WORKING_DIRECTORY }}/.npmrc
      shell: bash
    - uses: amondnet/[email protected]
      with:
        vercel-token: ${{ inputs.VERCEL_TOKEN }}
        github-token: ${{ inputs.GITHUB_TOKEN }}
        vercel-org-id: ${{ inputs.VERCEL_ORG_ID }}
        vercel-project-id: ${{ inputs.VERCEL_PROJECT_ID}}
        scope: xxxxxxx
        working-directory: ${{ inputs.WORKING_DIRECTORY }}
        vercel-args: >
          ${{ inputs.VERCEL_ARGS }}
        vercel-version: ${{ inputs.VERCEL_VERSION }}

this week i start having this issue
Error: Git author Unknown must have access to the team XXXX on Vercel to create deployments.

Metadata

Metadata

Assignees

Labels

No labels
No labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions