Forge CI/CD Production build

Hello, I’m currently running pipelines and it returns an error that can be seen below:


The pipeline looks like this (gitlab pipeline):

# Backend Build (Production)
prepare-backend-prod:
  stage: prepare-backend
  script:
    - |
      npm install
      npm install --global @forge/cli
      forge settings set usage-analytics false
      forge lint
      forge deploy -e production
      forge install --upgrade --site $PROD_SITE --product jira --non-interactive -e production
  only:
    - master
  environment: production
  cache:
    paths:
      - node_modules/
  needs: [prepare-frontend] 

Before that the whole pipeline goes through but the it has a permission error since I am not the admin of the workspace but it updates the forge app anyway. Is there something that I miss?