Skip to content

Merge of ADP-1479-Error-AdaptyUIError.viewAlreadyPresented branch #243

Merge of ADP-1479-Error-AdaptyUIError.viewAlreadyPresented branch

Merge of ADP-1479-Error-AdaptyUIError.viewAlreadyPresented branch #243

name: Deploy docs to S3 production
on:
push:
branches:
- main
jobs:
run:
runs-on: ubuntu-latest
environment: production
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: yarn
- name: Build
run: yarn build
- name: Deploy
uses: reggionick/s3-deploy@v4
with:
folder: build
bucket: ${{ secrets.S3_BUCKET }}
bucket-region: ${{ secrets.S3_BUCKET_REGION }}
dist-id: ${{ secrets.CLOUDFRONT_DISTRIBUTION_ID }}
invalidation: /*
delete-removed: true
# no-cache: true
private: true
# files-to-include: '{.*/**,**}'