File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
actions/validate-redis-release-archive Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,8 @@ if [ -z "$TAG" ]; then
13
13
fi
14
14
15
15
# Construct Redis archive URL
16
- REDIS_ARCHIVE_URL=" https://github.com/redis/redis/archive/refs/tags/${TAG} .tar.gz"
16
+ # REDIS_ARCHIVE_URL="https://github.com/redis/redis/archive/refs/tags/${TAG}.tar.gz"
17
+ REDIS_ARCHIVE_URL=" https://download.redis.io/releases/redis-${TAG} .tar.gz"
17
18
echo " REDIS_ARCHIVE_URL: $REDIS_ARCHIVE_URL "
18
19
19
20
# Download the Redis archive
Original file line number Diff line number Diff line change 28
28
contents : read
29
29
30
30
steps :
31
- - name : configure aws credentials
31
+ - name : Configure aws credentials
32
32
uses :
aws-actions/[email protected]
33
33
with :
34
34
role-to-assume : ${{ vars.AWS_IAM_ROLE_ARN }}
42
42
with :
43
43
python-version : ' 3.11'
44
44
45
- - name : Install package in development mode
45
+ - name : Install redis-release package with PIP
46
46
run : |
47
47
python -m venv venv
48
48
. venv/bin/activate
You can’t perform that action at this time.
0 commit comments