mirror of
https://github.com/artegoser/AnoPaper.git
synced 2024-11-21 19:36:22 +03:00
Create Build.yml
This commit is contained in:
parent
842bb2ff41
commit
2ae13e6079
1 changed files with 44 additions and 0 deletions
44
.github/workflows/Build.yml
vendored
Normal file
44
.github/workflows/Build.yml
vendored
Normal file
|
@ -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 }}"
|
Loading…
Add table
Reference in a new issue