Initial commit #1
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: React Template CD | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_REGION: ${{ secrets.AWS_REGION }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'yarn' | |
- name: Get branch name | |
id: vars | |
run: echo ::set-output name=short_ref::${GITHUB_REF#refs/*/} | |
- name: Set env.ENV_NAME | |
run: | | |
if [[ ${{steps.vars.outputs.short_ref}} == 'master' ]]; then | |
echo "ENV_NAME=prod" >> "$GITHUB_ENV" | |
else | |
echo "ENV_NAME=dev" >> "$GITHUB_ENV" | |
fi | |
- name: Install dependencies | |
run: yarn | |
- name: Build | |
run: yarn build:${{ env.ENV_NAME }} | |
- name: Lint | |
run: yarn lint | |
- name: Deploy to S3 | |
uses: jakejarvis/s3-sync-action@master | |
with: | |
args: --acl public-read --follow-symlinks --exclude 'tests/*' | |
env: | |
AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }}-${{ env.ENV_NAME }} | |
SOURCE_DIR: './build/' | |
- name: Invalidate CloudFront | |
if: github.ref == 'refs/heads/master' | |
uses: chetan/invalidate-cloudfront-action@master | |
env: | |
DISTRIBUTION: ${{ secrets.DISTRIBUTION_ID }} | |
PATHS: '/*' | |
- name: Create badges | |
run: yarn run test:badges | |
- name: Commit badges | |
uses: EndBug/add-and-commit@v7 | |
with: | |
author_name: Gitflow | |
author_email: [email protected] | |
message: 'Update badges' | |
add: 'badges/' | |
push: false | |
- name: Pushing to a protected branch | |
uses: CasperWA/push-protected@v2 | |
with: | |
token: ${{ secrets.PUSH_TO_PROTECTED_BRANCH }} | |
branch: ${{ steps.vars.outputs.short_ref }} | |
unprotect_reviews: true |