mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-12 10:19:59 -05:00
Fix env location
This commit is contained in:
parent
aaac315736
commit
785badae6e
1 changed files with 3 additions and 4 deletions
7
.github/actions/build/action.yml
vendored
7
.github/actions/build/action.yml
vendored
|
@ -13,10 +13,6 @@ inputs:
|
||||||
required: true
|
required: true
|
||||||
default: .
|
default: .
|
||||||
|
|
||||||
env:
|
|
||||||
BUILD_FOLDER: ${{ inputs.folder }}
|
|
||||||
BASE: ${{ inputs.base }}
|
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: composite
|
using: composite
|
||||||
steps:
|
steps:
|
||||||
|
@ -31,6 +27,9 @@ runs:
|
||||||
run: yarn install
|
run: yarn install
|
||||||
|
|
||||||
- name: build
|
- name: build
|
||||||
|
env:
|
||||||
|
BUILD_FOLDER: ${{ inputs.folder }}
|
||||||
|
BASE: ${{ inputs.base }}
|
||||||
shell: bash -l {0}
|
shell: bash -l {0}
|
||||||
run: |
|
run: |
|
||||||
cd "$BUILD_FOLDER"
|
cd "$BUILD_FOLDER"
|
||||||
|
|
Loading…
Reference in a new issue