From 356aabe0b076d6feb7bdef33d37d5e5d7833c2fe Mon Sep 17 00:00:00 2001 From: Preston Jennings Date: Thu, 21 Sep 2023 22:40:16 -0700 Subject: [PATCH] Change from running build in docker to calling builds directly. This should be faster... if it works. This script runs fine locally but on teamcity it caused issues. Might as well try it with github actions. --- .github/workflows/vinyl-build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/vinyl-build.yml b/.github/workflows/vinyl-build.yml index eb5748cbb89c..250c9fc5ef99 100644 --- a/.github/workflows/vinyl-build.yml +++ b/.github/workflows/vinyl-build.yml @@ -18,8 +18,12 @@ jobs: with: global-json-file: global.json + #- name: Build AspNetCore + # run: ./pack.sh + - name: Build AspNetCore - run: ./pack.sh + shell: pwsh + run: ./pack.ps1 - name: Upload artifacts uses: actions/upload-artifact@v3