Skip to content

Merge pull request #426 from PermanentOrg/dependabot/npm_and_yarn/typ… #257

Merge pull request #426 from PermanentOrg/dependabot/npm_and_yarn/typ…

Merge pull request #426 from PermanentOrg/dependabot/npm_and_yarn/typ… #257

Workflow file for this run

name: upload
on:
push:
branches:
- main
workflow_dispatch:
jobs:
upload:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
- run: npm install
- run: npm run build
- name: Create a tar archive
run: |
cd ..
tar --exclude=.git* --exclude=node_modules/* --exclude=src/* -czvf sftp-service.tar.gz sftp-service
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.AWS_DEFAULT_REGION }}
- name: Copy package to S3
run: |
aws s3 cp ../sftp-service.tar.gz s3://permanent-repos/dev/sftp-service.tar.gz
aws s3 cp ../sftp-service.tar.gz s3://permanent-repos/staging/sftp-service.tar.gz
aws s3 cp ../sftp-service.tar.gz s3://permanent-repos/prod/sftp-service.tar.gz