Skip to content

Instantly share code, notes, and snippets.

@stay7
Last active September 5, 2021 07:37
Show Gist options
  • Save stay7/7052793d31a67dfe1ed9363c6a6acbbf to your computer and use it in GitHub Desktop.
Save stay7/7052793d31a67dfe1ed9363c6a6acbbf to your computer and use it in GitHub Desktop.
[Github Action] Deploy react to s3 bucket
# This is a basic workflow to help you get started with Actions
name: s3-deploy
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [deploy]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.AWS_REGION }}
- name: Build React App
run: yarn install && yarn build
- name: Deploy app build to S3 bucket
run: aws s3 sync ./build/ s3://[my-buekct-name] --delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment