Attempt to upload artifacts
This commit is contained in:
parent
0c0d8f7711
commit
2daec09426
1 changed files with 6 additions and 2 deletions
8
.github/workflows/node.js.yml
vendored
8
.github/workflows/node.js.yml
vendored
|
@ -1,7 +1,7 @@
|
||||||
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
|
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
|
||||||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
|
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
|
||||||
|
|
||||||
name: Node.js CI
|
name: Node.js Build
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
@ -30,4 +30,8 @@ jobs:
|
||||||
# Don't run updateCheck for now
|
# Don't run updateCheck for now
|
||||||
#- run: npm run dev:updateCheck
|
#- run: npm run dev:updateCheck
|
||||||
- run: npm run build
|
- run: npm run build
|
||||||
#- run: npm test
|
- name: Upload build artifact
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: mc-beta-server
|
||||||
|
path: build/index.min.js
|
||||||
|
|
Loading…
Reference in a new issue