From 0ee0d0384865c6de7c50931e3fd1679e50821379 Mon Sep 17 00:00:00 2001 From: hyeseon han Date: Fri, 19 Jan 2024 00:41:19 +0900 Subject: [PATCH] =?UTF-8?q?ci:=20appspec.yml=20=ED=8C=8C=EC=9D=BC=20?= =?UTF-8?q?=EC=83=9D=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/workflow.yml | 3 +++ appspec.yml | 12 ++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 appspec.yml diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 9885748..99ce025 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -22,10 +22,13 @@ jobs: steps: - name: Checkout source code. uses: actions/checkout@v2 + - name: Check Node v run: node -v + - name: Install Dependencies run: yarn install --frozen-lockfile + - name: Build run: yarn build diff --git a/appspec.yml b/appspec.yml new file mode 100644 index 0000000..3cb5b80 --- /dev/null +++ b/appspec.yml @@ -0,0 +1,12 @@ +version: 0.0 +os: linux + +files: + - source: / + destination: /home/ubuntu/mara-deploy + overwrite: yes +permissions: + - object: /home/ubuntu/mara-deploy + owner: ubuntu + group: ubuntu + mode: 755