Skip to content

Commit

Permalink
chore: continous deploy to dev bucket
Browse files Browse the repository at this point in the history
  • Loading branch information
birme authored and martinstark committed Apr 15, 2024
1 parent b25ab72 commit 7b9a0d8
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/run-cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Continous deploy to dev environment
on:
push:
branches:
- "main"

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
registry-url: https://registry.npmjs.org/

- name: Build
run: |
yarn
yarn build
- name: Sync to Dev bucket
uses: jakejarvis/[email protected]
with:
args: --follow-symlinks --delete
env:
AWS_S3_BUCKET: "origin-intercom-app-dev"
AWS_ACCESS_KEY_ID: ${{ secrets.S3_AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.S3_AWS_SECRET_ACCESS_KEY }}
AWS_REGION: "eu-north-1"
SOURCE_DIR: "dist/"

0 comments on commit 7b9a0d8

Please sign in to comment.