Skip to content

Commit

Permalink
Updating aws s3 cp repo
Browse files Browse the repository at this point in the history
  • Loading branch information
margon8 committed Nov 1, 2023
1 parent 617f560 commit 8e40079
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: 'eu-central-1'
S3_BUCKET: ${{ secrets.AWS_BUCKET }}
S3_KEY: '/platform/core/latest/MapperEntrypoint.scala'
S3_KEY: platform/core/latest/MapperEntrypoint.scala
FILE: ./MapperEntrypoint.scala

- name: Download jar
Expand All @@ -72,7 +72,7 @@ jobs:
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: 'eu-central-1'
S3_BUCKET: ${{ secrets.AWS_BUCKET }}
S3_KEY: '/platform/core/latest/metabolic-core-assembly.jar'
S3_KEY: platform/core/latest/metabolic-core-assembly.jar
FILE: ./metabolic-core-assembly-SNAPSHOT.jar

deploy-release:
Expand All @@ -98,7 +98,7 @@ jobs:
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: 'eu-central-1'
S3_BUCKET: ${{ secrets.AWS_BUCKET }}
S3_KEY: ${{ format('/platform/core/{0}/MapperEntrypoint.scala', env.GIT_BRANCH_NAME) }}
S3_KEY: ${{ format('platform/core/{0}/MapperEntrypoint.scala', env.GIT_BRANCH_NAME) }}
FILE: ./MapperEntrypoint.scala

- name: Download jar
Expand All @@ -115,5 +115,5 @@ jobs:
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: 'eu-central-1'
S3_BUCKET: ${{ secrets.AWS_BUCKET }}
S3_KEY: ${{ format('/platform/core/{0}/metabolic-core-assembly.jar', env.GIT_BRANCH_NAME) }}
S3_KEY: ${{ format('platform/core/{0}/metabolic-core-assembly.jar', env.GIT_BRANCH_NAME) }}
FILE: ./metabolic-core-assembly-SNAPSHOT.jar

0 comments on commit 8e40079

Please sign in to comment.