Rename parent directory
12
.github/workflows/build.yml
vendored
@@ -41,12 +41,12 @@ jobs:
|
|||||||
|
|
||||||
- name: Install Angular Dependencies
|
- name: Install Angular Dependencies
|
||||||
run: |
|
run: |
|
||||||
cd ./tools
|
cd ./bytefy.webapp
|
||||||
npm install --force
|
npm install --force
|
||||||
|
|
||||||
- name: Build Angular App
|
- name: Build Angular App
|
||||||
run: |
|
run: |
|
||||||
cd ./tools
|
cd ./bytefy.webapp
|
||||||
ng build --configuration production --output-path=dist
|
ng build --configuration production --output-path=dist
|
||||||
|
|
||||||
- name: Upload Artifacts
|
- name: Upload Artifacts
|
||||||
@@ -59,7 +59,7 @@ jobs:
|
|||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: angular-artifacts
|
name: angular-artifacts
|
||||||
path: ./tools/dist
|
path: ./bytefy.webapp/dist
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
runs-on: self-hosted # Ensure your self-hosted runner is configured
|
runs-on: self-hosted # Ensure your self-hosted runner is configured
|
||||||
@@ -76,15 +76,15 @@ jobs:
|
|||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: angular-artifacts
|
name: angular-artifacts
|
||||||
path: ./tools/dist
|
path: ./bytefy.webapp/dist
|
||||||
|
|
||||||
- name: Check Output Files
|
- name: Check Output Files
|
||||||
run: |
|
run: |
|
||||||
dir ./output/dotnet
|
dir ./output/dotnet
|
||||||
dir ./tools/dist
|
dir ./bytefy.webapp/dist
|
||||||
|
|
||||||
- name: Copy .NET Publish Files to IIS Server
|
- name: Copy .NET Publish Files to IIS Server
|
||||||
run: |
|
run: |
|
||||||
xcopy ".\output\dotnet\*" "C:\inetpub\applications\bytefy.image" /s /i /y
|
xcopy ".\output\dotnet\*" "C:\inetpub\applications\bytefy.image" /s /i /y
|
||||||
xcopy ".\tools\dist\browser\*" "C:\inetpub\wwwroot\bytefy" /s /i /y
|
xcopy ".\bytefy.webapp\dist\browser\*" "C:\inetpub\wwwroot\bytefy" /s /i /y
|
||||||
|
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 640 KiB After Width: | Height: | Size: 640 KiB |
|
Before Width: | Height: | Size: 598 KiB After Width: | Height: | Size: 598 KiB |
|
Before Width: | Height: | Size: 589 KiB After Width: | Height: | Size: 589 KiB |
|
Before Width: | Height: | Size: 589 KiB After Width: | Height: | Size: 589 KiB |
|
Before Width: | Height: | Size: 547 KiB After Width: | Height: | Size: 547 KiB |
|
Before Width: | Height: | Size: 76 KiB After Width: | Height: | Size: 76 KiB |