From b94980a1ded07a9e66293a59329f261b369a889d Mon Sep 17 00:00:00 2001 From: Artemy Date: Mon, 11 Sep 2023 11:16:09 +0300 Subject: [PATCH] Create deploy.yml --- .github/workflows/deploy.yml | 44 ++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..a3617b2 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,44 @@ +name: Build & Deploy + +on: + push: + branches: ["main"] + + pull_request: + branches: ["main"] + +jobs: + build-and-deploy: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [18.x] + + steps: + - uses: actions/checkout@v3 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + cache: "npm" + - run: npm ci + - run: npm run build --if-present + - run: npm run test --if-present + + - uses: a7ul/tar-action@v1.1.0 + with: + command: c + cwd: "./" + files: | + backend/ + frontend/dist/ + captain-definition + outPath: deploy.tar + + - name: Deploy App to CapRover + uses: caprover/deploy-from-github@v1.0.1 + with: + server: "${{ secrets.CAPROVER_SERVER }}" + app: "${{ secrets.APP_NAME }}" + token: "${{ secrets.APP_TOKEN }}"