Merge pull request #497 from PermanentOrg/dependabot/npm_and_yarn/typ… #316
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |