Skip to content

outpath

outpath #20

Workflow file for this run

name: Build & Deploy
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
TAR_OUTPUT_DESTINATION: deploy.tar
jobs:
build-and-deploy:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.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
- uses: a7ul/[email protected]
with:
command: c
cwd: "./"
files: |
./dist
Dockerfile
default.conf
captain-definition
outPath: $TAR_OUTPUT_DESTINATION
- name: Deploy App to CapRover
uses: caprover/[email protected]
with:
server: "${{ secrets.CAPROVER_SERVER }}"
app: "${{ secrets.CAPROVER_NAME }}"
token: "${{ secrets.CAPROVER_KEY }}"