From 2eebf6b6e0983e7f39236c0f4569ba0f7dcfdd0c Mon Sep 17 00:00:00 2001 From: Madhu Rajanna Date: Thu, 10 Jun 2021 12:13:09 +0530 Subject: [PATCH] build: use cephcsi bot token to push helm charts GITHUB_TOKEN is auto generated for cephcsi repo and it cannot be used to push helm charts to different repo. added new secret CEPH_CSI_BOT_TOKEN to push helm charts. Signed-off-by: Madhu Rajanna --- .github/workflows/publish-artifacts.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-artifacts.yaml b/.github/workflows/publish-artifacts.yaml index 882057be0..b05ab1ff6 100644 --- a/.github/workflows/publish-artifacts.yaml +++ b/.github/workflows/publish-artifacts.yaml @@ -32,4 +32,4 @@ jobs: # https://github.com/containers/buildah/issues/1407 # use docker to build images # yamllint disable-line rule:line-length - run: GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} CONTAINER_CMD=docker ./deploy.sh + run: GITHUB_TOKEN=${{ secrets.CEPH_CSI_BOT_TOKEN }} CONTAINER_CMD=docker ./deploy.sh