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
1313fi
1414
1515# 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"
1718echo " REDIS_ARCHIVE_URL: $REDIS_ARCHIVE_URL "
1819
1920# Download the Redis archive
Original file line number Diff line number Diff line change 2828 contents : read
2929
3030 steps :
31- - name : configure aws credentials
31+ - name : Configure aws credentials
3232 uses :
aws-actions/[email protected] 3333 with :
3434 role-to-assume : ${{ vars.AWS_IAM_ROLE_ARN }}
4242 with :
4343 python-version : ' 3.11'
4444
45- - name : Install package in development mode
45+ - name : Install redis-release package with PIP
4646 run : |
4747 python -m venv venv
4848 . venv/bin/activate
You can’t perform that action at this time.
0 commit comments