Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/tuyanet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-11-04 13:19:20 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-11-04 13:19:20 +0300
commit7ef8dde31bce6fdf98dd2b598890342d3cb63236 (patch)
tree01c2ae7a7a006322c716b9f39774935e0248b2bf
parent09eb935602acda7c2f332b155c6193103e65bc72 (diff)
Pipeline fix
-rw-r--r--.github/workflows/build.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 1297a43..d2022ff 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -16,6 +16,7 @@ jobs:
env:
APP_NAME: TuyaNet
OUTPUT_DIR: output
+ CONFIGURATION: Release
steps:
- name: Checkout
uses: actions/checkout@v3
@@ -24,9 +25,9 @@ jobs:
with:
dotnet-version: 6.0.x
- name: Build
- run: dotnet build -c Release
+ run: dotnet build -c ${{ env.CONFIGURATION }}
- name: Pack
- run: dotnet pack -c Release -o ${{ env.OUTPUT_DIR }}
+ run: dotnet pack -c ${{ env.CONFIGURATION }} -o ${{ env.OUTPUT_DIR }}
- name: Upload artifact
uses: actions/upload-artifact@v3
with: