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

github.com/ClusterM/nes-containers.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 12:35:59 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-11-04 12:35:59 +0300
commit6014405b69355c2c1b8b8f11726b14f1e563bdd0 (patch)
tree304ad2da80c120ca3b44f4c0521a5bc2b6cabf25
parentbcf244f6a01bc72c285bbd69f9a5b261bad9643a (diff)
build.yml fix
-rw-r--r--.github/workflows/build.yml23
1 files changed, 11 insertions, 12 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 1a543d6..929f2f1 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -11,7 +11,6 @@ on:
workflow_dispatch:
jobs:
- # Single deploy job since we're just deploying
build:
environment:
APP_NAME: nes-containers
@@ -21,14 +20,14 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- - name: Setup .NET
- uses: actions/setup-dotnet@v2
- with:
- dotnet-version: 6.0.x
- - name: Build
- run: dotnet pack ${{ env.OUTPUT_DIR }}
- - name: Upload artifact
- uses: actions/upload-artifact@v3
- with:
- name: ${{ env.APP_NAME }}
- path: ${{ env.OUTPUT_DIR }}
+ - name: Setup .NET
+ uses: actions/setup-dotnet@v2
+ with:
+ dotnet-version: 6.0.x
+ - name: Build
+ run: dotnet pack ${{ env.OUTPUT_DIR }}
+ - name: Upload artifact
+ uses: actions/upload-artifact@v3
+ with:
+ name: ${{ env.APP_NAME }}
+ path: ${{ env.OUTPUT_DIR }}