diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml new file mode 100644 index 00000000..365233c2 --- /dev/null +++ b/.github/workflows/CI.yml @@ -0,0 +1,20 @@ +name: FrontEnd CI + +on: + pull_request: + branches: [main, dev] + # push: + # branches: [main, dev] + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20.11.0 + + - run: yarn install + - run: yarn build diff --git a/.github/workflows/Dev-CD.yml b/.github/workflows/Dev-CD.yml new file mode 100644 index 00000000..861b653a --- /dev/null +++ b/.github/workflows/Dev-CD.yml @@ -0,0 +1,30 @@ +name: FrontEnd Dev CD + +on: + push: + branches: [ "dev" ] + workflow_dispatch: + +jobs: + deploy: + runs-on: ubuntu-latest + env: + AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20.11.0 + + - run: yarn install + - run: yarn build + + - name: S3 and CloudFront Deploy + uses: Reggionick/s3-deploy@v4 + with: + folder: .next + bucket: ${{ secrets.DEV_S3_BUCKET_NAME }} + bucket-region: ${{ secrets.AWS_DEFAULT_REGION }} + dist-id: ${{ secrets.DEV_CLOUDFRONT_ID }}