From 51b00653b900f974a0fdbe37b4507ba592f596c8 Mon Sep 17 00:00:00 2001 From: Pranav C Date: Mon, 20 Jun 2022 12:06:19 +0530 Subject: [PATCH] chore: secret name correction Signed-off-by: Pranav C --- .github/workflows/release-executables.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-executables.yml b/.github/workflows/release-executables.yml index 9beee261bd..0867ce8efc 100644 --- a/.github/workflows/release-executables.yml +++ b/.github/workflows/release-executables.yml @@ -19,7 +19,7 @@ jobs: steps: - uses: actions/checkout@v3 with: - token: ${{ secrets.NC_GITHUB_TOKEN }} + token: ${{ secrets.GITHUB_TOKEN }} repository: 'nocodb/nocodb-timely' - name: Cache node modules id: cache-npm @@ -109,7 +109,7 @@ jobs: - name: Upload executables(except mac executables) to release uses: svenstaro/upload-release-action@v2 with: - repo_token: ${{ secrets.NC_GITHUB_TOKEN }} + repo_token: ${{ secrets.GITHUB_TOKEN }} file: dist/** tag: ${{ github.event.inputs.tag || inputs.tag }} overwrite: true @@ -159,7 +159,7 @@ jobs: - name: Upload mac executables to release uses: svenstaro/upload-release-action@v2 with: - repo_token: ${{ secrets.NC_GITHUB_TOKEN }} + repo_token: ${{ secrets.GITHUB_TOKEN }} file: mac-dist/** tag: ${{ github.event.inputs.tag || inputs.tag }} overwrite: true