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:39:56 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-11-04 12:39:56 +0300
commit0f69c638d82979fbfb6b7b33c876f93ad2495c68 (patch)
tree42175a27b9b9a81ecc9d7045bca311c74f387277
parent6014405b69355c2c1b8b8f11726b14f1e563bdd0 (diff)
build.yml fix
-rw-r--r--.github/workflows/build.yml7
-rw-r--r--.github/workflows/docs.yml4
2 files changed, 5 insertions, 6 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 929f2f1..654c35e 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -12,11 +12,10 @@ on:
jobs:
build:
- environment:
+ runs-on: ubuntu-latest
+ env:
APP_NAME: nes-containers
- PROJECT_PATH: ./nes-containers
OUTPUT_DIR: output
- runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
@@ -25,7 +24,7 @@ jobs:
with:
dotnet-version: 6.0.x
- name: Build
- run: dotnet pack ${{ env.OUTPUT_DIR }}
+ run: dotnet pack -o ${{ env.OUTPUT_DIR }}
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
index 39452e2..2456d4e 100644
--- a/.github/workflows/docs.yml
+++ b/.github/workflows/docs.yml
@@ -22,10 +22,10 @@ concurrency:
jobs:
# Single deploy job since we're just deploying
deploy:
- environment:
+ runs-on: ubuntu-latest
+ env:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
- runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3