Skip to content

Commit 2def7c2

Browse files
committed
Use github-token explicitly
1 parent 209801b commit 2def7c2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/redis_release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ jobs:
5454
FORCE_COLOR: 1
5555
GITHUB_TOKEN: ${{ secrets.GH_TOKEN_FOR_WORKFLOW_DISPATCH }}
5656
run: |
57-
aws s3 ls s3://redis-release-state/release-state/8.2.1
5857
5958
. venv/bin/activate
6059
cmd=("redis-release" "release")
@@ -67,6 +66,8 @@ jobs:
6766
cmd+=("--release-type=${{ inputs.release_type }}")
6867
fi
6968
69+
cmd+=("--github-token=$GITHUB_TOKEN")
70+
7071
cmd+=("${{ inputs.release_tag }}")
7172
7273
echo "Running command: ${cmd[*]}"

0 commit comments

Comments
 (0)