mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-22 07:00:58 -05:00
Fix shell not being included for build action
This commit is contained in:
parent
f554687878
commit
aaac315736
1 changed files with 8 additions and 5 deletions
13
.github/actions/build/action.yml
vendored
13
.github/actions/build/action.yml
vendored
|
@ -13,6 +13,10 @@ inputs:
|
||||||
required: true
|
required: true
|
||||||
default: .
|
default: .
|
||||||
|
|
||||||
|
env:
|
||||||
|
BUILD_FOLDER: ${{ inputs.folder }}
|
||||||
|
BASE: ${{ inputs.base }}
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: composite
|
using: composite
|
||||||
steps:
|
steps:
|
||||||
|
@ -22,13 +26,12 @@ runs:
|
||||||
node-version: 15
|
node-version: 15
|
||||||
cache: "yarn"
|
cache: "yarn"
|
||||||
|
|
||||||
- run: yarn install
|
- name: install dependencies
|
||||||
# - run: yarn check
|
shell: bash -l {0}
|
||||||
|
run: yarn install
|
||||||
|
|
||||||
- name: build
|
- name: build
|
||||||
env:
|
shell: bash -l {0}
|
||||||
BUILD_FOLDER: ${{ inputs.folder }}
|
|
||||||
BASE: ${{ inputs.base }}
|
|
||||||
run: |
|
run: |
|
||||||
cd "$BUILD_FOLDER"
|
cd "$BUILD_FOLDER"
|
||||||
yarn build --base "$BASE"
|
yarn build --base "$BASE"
|
||||||
|
|
Loading…
Reference in a new issue