|
|
|
@ -65,14 +65,14 @@ jobs:
|
|
|
|
|
- name: Publish app
|
|
|
|
|
run: >
|
|
|
|
|
dotnet publish ${{ matrix.app }}
|
|
|
|
|
--output ${{ matrix.app }}/publish/
|
|
|
|
|
--output ${{ matrix.app }}/bin/publish/
|
|
|
|
|
--configuration Release
|
|
|
|
|
|
|
|
|
|
- name: Upload artifacts
|
|
|
|
|
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # 3.1.3
|
|
|
|
|
with:
|
|
|
|
|
name: ${{ matrix.app }}
|
|
|
|
|
path: ${{ matrix.app }}/publish/
|
|
|
|
|
path: ${{ matrix.app }}/bin/publish/
|
|
|
|
|
|
|
|
|
|
release:
|
|
|
|
|
if: ${{ github.event_name == 'push' && github.ref_type == 'tag' }}
|
|
|
|
|