Add .forgejo/workflows/build.yaml
All checks were successful
Build / Build (push) Successful in 5m10s
All checks were successful
Build / Build (push) Successful in 5m10s
This commit is contained in:
parent
ad76e02880
commit
d775fbf2e9
1 changed files with 27 additions and 0 deletions
27
.forgejo/workflows/build.yaml
Normal file
27
.forgejo/workflows/build.yaml
Normal file
|
@ -0,0 +1,27 @@
|
|||
name: Build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repo
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@v3
|
||||
|
||||
- name: Build project
|
||||
run: npm install && npm run build
|
||||
|
||||
- name: Upload production-ready build files
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: production-files
|
||||
path: ./dist
|
Loading…
Reference in a new issue