Hi there,
I try to publish to canister.io when my local gitea repository gets updated. I have added secrets in the drone.io UI but I get this message in the console:
time="2021-11-08T20:38:33.745829314Z" level=error msg="Handler for POST /v1.41/auth returned error: Get \"https://cloud.canister.io:5000/v2/\": authorization server did not include a token in the response"
And my pipeline looks like this=
kind: pipeline
name: lunchscraper
type: docker
steps:
- name: build
image: node:14-alpine
user: root
commands:
- "npm install --production"
- name: publish
image: plugins/docker
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
repo: "cloud.canister.io:5000/myname/myproject"
registry: "cloud.canister.io:5000"
auto_tag: true
Suggestions?