BAAS-32668: shorten snippet expression titles based on product feedba… #248
This file contains hidden or 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: Zip and Upload to S3 for Development | |
on: | |
push: | |
branches: | |
- development | |
jobs: | |
deploy-after-testing: | |
uses: ./.github/workflows/Run-Tests.yml | |
zip-and-upload: | |
runs-on: ubuntu-latest | |
needs: [deploy-after-testing] | |
steps: | |
- uses: actions/checkout@v2 | |
- run: mkdir zip | |
- run: zip -r zip/triggers-functions-examples.zip . -x ".DS_Store" ".git/*" ".github/*" ".gitignore" "./zip/" "README.md" "backend/*" "test/*" "tools/*" | |
- uses: shallwefootball/s3-upload-action@master | |
with: | |
aws_key_id: ${{ secrets.AWS_KEY_ID }} | |
aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws_bucket: ${{ secrets.AWS_BUCKET }} | |
source_dir: ./zip | |
destination_dir: "v1/development" |