revite/.github/actions/build/action.yml

38 lines
883 B
YAML
Raw Normal View History

name: Build
description: Builds a project instance, assuming all the correct project files are in the build folder
inputs:
base:
name: Base path
description: The path to use as a base for linking
required: true
default: /
folder:
name: Build Folder
description: The folder to try to build from
required: true
default: .
env:
BUILD_FOLDER: ${{ inputs.folder }}
BASE: ${{ inputs.base }}
runs:
using: composite
steps:
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 15
cache: "yarn"
- name: install dependencies
shell: bash -l {0}
run: yarn install
- name: build
shell: bash -l {0}
run: |
cd "$BUILD_FOLDER"
yarn build --base "$BASE"