Merge pull request #1567 from 42organization/agenda #84
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: Test deploy to 42ggDevS3 | |
on: | |
push: | |
branches: | |
- test-deploy | |
workflow_dispatch: | |
jobs: | |
continuous-deployment: | |
runs-on: macos-12 | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v2 | |
- name: Use Node.js version 16.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16.x | |
- name: Build | |
env: | |
NEXT_PUBLIC_SERVER_ENDPOINT: ${{ secrets.NEXT_DEV_PUBLIC_SERVER_ENDPOINT }} | |
NEXT_PUBLIC_CLIENT_ENDPOINT: ${{ secrets.DEV_NEXT_PUBLIC_CLIENT_ENDPOINT }} | |
NEXT_PUBLIC_AGENDA_SERVER_ENDPOINT: ${{ secrets.DEV_NEXT_PUBLIC_AGENDA_SERVER_ENDPOINT }} | |
NEXT_PUBLIC_PARTY_MANAGE_SERVER_ENDPOINT: ${{ secrets.DEV_NEXT_PUBLIC_PARTY_MANAGE_SERVER_ENDPOINT }} | |
NEXT_PUBLIC_MANAGE_SERVER_ENDPOINT: ${{ secrets.NEXT_DEV_PUBLIC_MANAGE_SERVER_ENDPOINT }} | |
GENERATE_SOURCEMAP: ${{ secrets.GENERATE_SOURCEMAP }} | |
run: | | |
npm install | |
npm run build | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_DEV_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_DEV_SECRET_ACCESS_KEY }} | |
aws-region: ${{ secrets.AWS_BUCKET_REGION }} | |
- name: Deploy to S3 | |
run: aws s3 sync ./${{ secrets.BUILD_DIRECTORY }} ${{ secrets.AWS_DEV_BUCKET_NAME }} --acl public-read --delete | |
- name: CloudFront Invalidate Cache | |
run: aws cloudfront create-invalidation --distribution-id ${{ secrets.AWS_DEV_CLOUDFRONT_DISTRIBUTION_ID }} --paths '/*' |