Skip to content

Commit b503c90

Browse files
authored
Update main.yml
1 parent e6b2f5e commit b503c90

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,29 +24,29 @@ jobs:
2424
- name: Cache
2525
uses: actions/cache@v2.1.8
2626
with:
27-
path: ./collie-ui/node_modules
27+
path: ./ui/node_modules
2828
key: ${{runner.OS}}-${{hashFiles('**/yarn.lock')}}
2929

3030
- name: Install Dependencies
3131
if: steps.cache-dependencies.outputs.cache-hit != 'true'
3232
run: |
3333
npm install
34-
working-directory: ./collie-ui
34+
working-directory: ./ui
3535

3636
- name: Build
3737
run: |
3838
npm run build
39-
working-directory: ./collie-ui
39+
working-directory: ./ui
4040

4141
- name: Read Version
4242
id: version
4343
uses: ashley-taylor/read-json-property-action@v1.0
4444
with:
45-
path: ./collie-ui/package.json
45+
path: ./ui/package.json
4646
property: version
4747

4848
- name: Zip the Build
49-
run: zip -r dist.zip ./collie-ui/dist/
49+
run: zip -r dist.zip ./ui/dist/
5050

5151
- name: Create Release
5252
id: create_release

0 commit comments

Comments
 (0)