Skip to content

Bump vue from 3.5.1 to 3.5.3 (#177) #424

Bump vue from 3.5.1 to 3.5.3 (#177)

Bump vue from 3.5.1 to 3.5.3 (#177) #424

Workflow file for this run

name: Build and Deploy
on:
push:
branches: [ "main" ]
jobs:
deploy-frontend:
name: Build and Deploy Frontend
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: "yarn"
- run: yarn
- run: yarn run build
- uses: a7ul/tar-action@v1.1.0
with:
command: c
cwd: "./"
files: |
nginx/
dist/
captain-definition
outPath: deploy.tar
- uses: caprover/deploy-from-github@main
with:
server: '${{ secrets.CAPROVER_SERVER }}'
app: '${{ secrets.APP_NAME }}'
token: '${{ secrets.APP_TOKEN }}'