Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
66 commits
Select commit Hold shift + click to select a range
4fdf120
Refactor Git checkout process in workflows to use git clone for speci…
eranhd Dec 5, 2024
5fc7b37
Refactor Redis checkout process in workflows to use git clone for imp…
eranhd Dec 5, 2024
1c07d00
Update artifact upload conditions and upgrade to actions/upload-artif…
eranhd Dec 5, 2024
8f5bbe5
Upgrade actions/checkout and actions/upload-artifact to v4 in workflo…
eranhd Dec 5, 2024
cc44c70
Rename git checkout step to 'Get Redis' for clarity in workflows
eranhd Dec 5, 2024
71e5650
Update git clone command in workflows to specify branch for improved …
eranhd Dec 5, 2024
a396817
Update git clone commands in workflows to use commit SHA for improved…
eranhd Dec 8, 2024
2228b3a
fix
eranhd Dec 8, 2024
cb261d0
Add workflow inputs and dynamic matrix generation for Linux builds
eranhd Dec 8, 2024
3a74f45
.
eranhd Dec 8, 2024
f3de3fa
.
eranhd Dec 8, 2024
ceb9200
.
eranhd Dec 8, 2024
af33d8d
.
eranhd Dec 8, 2024
26a6d12
.
eranhd Dec 8, 2024
2e8f9a2
.
eranhd Dec 8, 2024
06feb19
.
eranhd Dec 8, 2024
f44b857
.
eranhd Dec 8, 2024
84c3c70
fix
eranhd Dec 8, 2024
f3b274f
refactor: update git clone and checkout process in CI workflows
eranhd Dec 8, 2024
b3f73bc
fix
eranhd Dec 8, 2024
a898648
fix: add safe.directory configuration for git in CI workflows
eranhd Dec 8, 2024
ac76dd4
fix
eranhd Dec 8, 2024
3ed5ebc
fix: update job name in build-linux-platforms workflow
eranhd Dec 8, 2024
4d75f9b
fix: enhance AWS credentials configuration in S3 upload action
eranhd Dec 8, 2024
20c4a97
fix: enable branch and tag triggers for build-linux-platforms workflow
eranhd Dec 8, 2024
f5c7043
fix: update AWS credentials step and improve artifact upload process …
eranhd Dec 8, 2024
ebb40da
fix
eranhd Dec 8, 2024
5fb2597
.
eranhd Dec 8, 2024
0b04215
fix
eranhd Dec 8, 2024
a06e8d4
fix
eranhd Dec 8, 2024
9d9774f
fix
eranhd Dec 8, 2024
3215ddc
refactor: update AWS CLI configuration and checkout steps in workflows
eranhd Dec 8, 2024
78b7b4f
refactor: update workflows to use dynamic Redis ref input and enable …
eranhd Dec 8, 2024
15d0c57
refactor: remove push triggers from workflows and streamline event ha…
eranhd Dec 8, 2024
986767f
refactor: rename CI workflows for clarity and consistency
eranhd Dec 8, 2024
a5b71f3
refactor: remove obsolete trigger-build workflow file
eranhd Dec 8, 2024
a910f1a
fix
eranhd Dec 18, 2024
5efa03d
.
eranhd Dec 18, 2024
7c1add4
.
eranhd Dec 18, 2024
aafe812
.
eranhd Dec 18, 2024
fa5e801
.
eranhd Dec 18, 2024
4d986d9
.
eranhd Dec 18, 2024
808351a
.
eranhd Dec 18, 2024
b913e1f
.
eranhd Dec 18, 2024
460dd3f
.
eranhd Dec 19, 2024
71820d1
.
eranhd Dec 19, 2024
8a577a1
.
eranhd Dec 19, 2024
f88dce4
.
eranhd Dec 19, 2024
2510f14
.
eranhd Dec 19, 2024
4bbd545
.
eranhd Dec 19, 2024
3f96cc5
.
eranhd Dec 19, 2024
832b03c
.
eranhd Dec 19, 2024
e20fb89
fix
eranhd Dec 19, 2024
c0ed866
.
eranhd Dec 19, 2024
573144a
.
eranhd Dec 19, 2024
4f40650
.
eranhd Dec 19, 2024
9d53d48
.
eranhd Dec 19, 2024
1965519
.
eranhd Dec 19, 2024
f4e6b96
.
eranhd Dec 22, 2024
6ca6e21
.
eranhd Dec 22, 2024
5722866
.
eranhd Dec 22, 2024
7dcd984
.
eranhd Dec 22, 2024
2dbe3c1
.
eranhd Dec 22, 2024
a064774
.
eranhd Dec 22, 2024
b2444e9
.
eranhd Dec 22, 2024
ebeb325
.
eranhd Dec 22, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix
  • Loading branch information
eranhd committed Dec 8, 2024
commit ebb40daba45e9aafa3107636ad38c7cf3c99bdd6
10 changes: 6 additions & 4 deletions .github/actions/upload-artifacts-to-s3-without-make/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ runs:
- name: Configure AWS credentials and upload artifcats # todo - use aws role instead
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

typo. "artifacts"

shell: bash
run: |
echo ::group::install aws cli
python3 -m venv .aws-cli-venv && source .aws-cli-venv/bin/activate &&
pip3 install --upgrade pip && pip3 install --no-cache-dir awscli && rm -rf /var/cache/apk/*
echo ::endgroup::

# Variables from the workflow
AWS_ACCESS_KEY_ID="${{ inputs.aws-access-key-id }}"
AWS_SECRET_ACCESS_KEY="${{ inputs.aws-secret-access-key }}"
Expand All @@ -37,10 +42,7 @@ runs:
aws configure set aws_access_key_id "$AWS_ACCESS_KEY_ID"
aws configure set aws_secret_access_key "$AWS_SECRET_ACCESS_KEY"
aws configure set region "$AWS_REGION"
echo ::group::install aws cli
python3 -m venv .aws-cli-venv && source .aws-cli-venv/bin/activate &&
pip3 install --upgrade pip && pip3 install --no-cache-dir awscli && rm -rf /var/cache/apk/*
echo ::endgroup::

echo ::group::upload artifacts
SNAPSHOT=1 SHOW=1 VERBOSE=1 ./sbin/upload-artifacts
echo ::endgroup::
Expand Down
Loading