workflow changes
This commit is contained in:
26
.github/workflows/pull_request_dev.yml
vendored
Normal file
26
.github/workflows/pull_request_dev.yml
vendored
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
name: Build application on dev pull request
|
||||||
|
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- "dev"
|
||||||
|
paths:
|
||||||
|
- "VDownload**"
|
||||||
|
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: Build
|
||||||
|
runs-on: windows-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- name: Setup .NET
|
||||||
|
uses: actions/setup-dotnet@v3
|
||||||
|
with:
|
||||||
|
dotnet-version: 8.0.x
|
||||||
|
- name: Build
|
||||||
|
run: dotnet build
|
||||||
4
.github/workflows/push_dev.yml
vendored
4
.github/workflows/push_dev.yml
vendored
@@ -1,10 +1,12 @@
|
|||||||
name: Build application
|
name: Build application on dev push
|
||||||
|
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- "dev"
|
- "dev"
|
||||||
|
paths:
|
||||||
|
- "VDownload**"
|
||||||
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|||||||
Reference in New Issue
Block a user