Skip to content

Commit

Permalink
trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
LiatSchulz committed Feb 13, 2024
1 parent 43673b4 commit 04e063a
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/liat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ jobs:
run: yum install -y tar gzip

- name: Checkout Code
continue-on-error: true
uses: actions/checkout@v4 # Checks out the repository under $GITHUB_WORKSPACE.
uses: actions/[email protected] # Checks out the repository under $GITHUB_WORKSPACE.

- name: Install conda
run: |
Expand All @@ -33,7 +32,6 @@ jobs:
conda info -a
- name: Create conda environment
continue-on-error: true
run : |
export PATH=$HOME/miniconda/bin:$PATH
conda create -n test-env python=3.10 > /dev/null
Expand All @@ -43,7 +41,7 @@ jobs:
conda list
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
uses: aws-actions/configure-aws-credentials@v3.0.2
with:
role-to-assume: arn:aws:iam::081569964966:role/github_cicd
aws-region: eu-west-1
Expand All @@ -52,5 +50,5 @@ jobs:
run: |
# Example of creating a tar.gz archive and uploading it
echo "Uploading artifact to S3"
# tar -czvf artifact.tar.gz /path/to/your/files
# aws s3 cp artifact.tar.gz s3://YOUR_S3_BUCKET_NAME/path/to/upload/
# tar -czvf artifact.tar.gz /path/to/your/files
# aws s3 cp artifact.tar.gz s3://YOUR_S3_BUCKET_NAME/path/to/upload/

0 comments on commit 04e063a

Please sign in to comment.