|
|
|
@ -43,7 +43,7 @@ jobs:
|
|
|
|
- name: Upload Artifacts
|
|
|
|
- name: Upload Artifacts
|
|
|
|
uses: actions/upload-artifact@v1.0.0
|
|
|
|
uses: actions/upload-artifact@v1.0.0
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
name: ${{ matrix.os }}
|
|
|
|
name: CLI-${{ matrix.os }}
|
|
|
|
path: ${{ matrix.os }}.zip
|
|
|
|
path: ${{ matrix.os }}.zip
|
|
|
|
|
|
|
|
|
|
|
|
gui:
|
|
|
|
gui:
|
|
|
|
@ -75,10 +75,10 @@ jobs:
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
dotnet-version: 6.0.x
|
|
|
|
dotnet-version: 6.0.x
|
|
|
|
- name: Restore dependencies
|
|
|
|
- name: Restore dependencies
|
|
|
|
working-directory: ./${{ matrix.DIR }}
|
|
|
|
working-directory: ./AM2RPortHelperGUI/${{ matrix.DIR }}
|
|
|
|
run: dotnet restore
|
|
|
|
run: dotnet restore
|
|
|
|
- name: Build
|
|
|
|
- name: Build
|
|
|
|
working-directory: ./${{ matrix.DIR }}
|
|
|
|
working-directory: ./AM2RPortHelperGUI/${{ matrix.DIR }}
|
|
|
|
run: dotnet publish ${{ matrix.COMMAND }} -c "${{ matrix.configuration }}"
|
|
|
|
run: dotnet publish ${{ matrix.COMMAND }} -c "${{ matrix.configuration }}"
|
|
|
|
# Steps for uploading artifacts.
|
|
|
|
# Steps for uploading artifacts.
|
|
|
|
- name: Zip to Archive
|
|
|
|
- name: Zip to Archive
|
|
|
|
@ -86,5 +86,5 @@ jobs:
|
|
|
|
- name: Upload Artifacts
|
|
|
|
- name: Upload Artifacts
|
|
|
|
uses: actions/upload-artifact@v1.0.0
|
|
|
|
uses: actions/upload-artifact@v1.0.0
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
name: ${{ matrix.os }}
|
|
|
|
name: GUI-${{ matrix.os }}
|
|
|
|
path: ${{ matrix.os }}.zip
|
|
|
|
path: ${{ matrix.os }}.zip
|
|
|
|
|