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