From 061f56913e576c8300cb905c9bf6caf14014d590 Mon Sep 17 00:00:00 2001 From: stefanprodan Date: Mon, 13 Jul 2020 18:28:06 +0300 Subject: [PATCH] Use GitHub token in release workflow --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b09009be8..97657e628 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,7 +24,7 @@ jobs: - name: Push image uses: docker/build-push-action@v1 with: - username: ${{ secrets.DOCKER_FLUXCD_USERNAME }} + username: ${{ secrets.DOCKER_FLUXCD_USER }} password: ${{ secrets.DOCKER_FLUXCD_PASSWORD }} repository: fluxcd/helm-controller tag_with_ref: true @@ -32,7 +32,7 @@ jobs: id: create_release uses: actions/create-release@latest env: - GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: tag_name: ${{ github.ref }} release_name: ${{ github.ref }} @@ -44,7 +44,7 @@ jobs: id: upload-release-asset uses: actions/upload-release-asset@v1 env: - GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} asset_path: ./config/release/helm-controller.yaml