-
Notifications
You must be signed in to change notification settings - Fork 1
38 lines (30 loc) · 743 Bytes
/
build.yml
File metadata and controls
38 lines (30 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
timeout-minutes: 20
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
#- uses: actions/setup-node@master
#- name: npm install
# working-directory: ./dashboard
# run: npm install
#- name: npm build
# working-directory: ./dashboard
# run: npm run build
#- name: copy vue dist to aspnetcore
# run: cp -Rf ./dashboard/dist/* ./Core.TaskProcessor.Dashboard/static/
- name: dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: 10.x
- name: build
run: dotnet build --configuration Release