CircleCI - clicking on github during the build phase crashes due to a read-only key

I am trying to run a successful build on github, but CircleCI warns me that the key to github is read-only. What can I do?

enter image description here

The Github key is read-only, but cannot be changed, and it was created using circleCI:

enter image description here

My deploy_staging.sh:

#!/usr/bin/env bash
gulp
cd staging
git init
git checkout -b "staging"
git config user.name "circleci"
git config user.email "circleci@aaa.org.il"
git add . -A
git commit -m "build"
git remote add azure https://github.com/aaa/webogram.git
git push azure staging --force

Gulp creates a new directory - "staging" - and creates a project in it. Then I want to push the result to azure, so I try to use a new branch ("stage") and click on it only the assembly directory.

+4
source share
1 answer

.

. .. .

+3

Source: https://habr.com/ru/post/1617215/


All Articles