diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1f04fe0..ded81a9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -74,12 +74,12 @@ jobs: path: ${{ github.workspace }}\mqttMultimeter-windows-arm64.zip - name: Build osx-x64 - run: dotnet publish Source\mqttMultimeter.csproj -r osx.12-x64 -p:Configuration=Release -p:PublishSingleFile=true -p:PublishReadyToRun=false -p:IncludeNativeLibrariesForSelfExtract=true -p:IncludeAllContentForSelfExtract=true --self-contained true -property:Version=${{ env.VERSION }} + run: dotnet publish Source\mqttMultimeter.csproj -r osx-x64 -p:Configuration=Release -p:PublishSingleFile=true -p:PublishReadyToRun=false -p:IncludeNativeLibrariesForSelfExtract=true -p:IncludeAllContentForSelfExtract=true --self-contained true -property:Version=${{ env.VERSION }} - name: Zip osx-x64 build uses: vimtor/action-zip@v1 with: - files: Source\bin\Release\osx.12-x64\publish\ + files: Source\bin\Release\osx-x64\publish\ dest: mqttMultimeter-macOS-x64.zip - name: Collect osx-x64 artifacts @@ -89,12 +89,12 @@ jobs: path: ${{ github.workspace }}\mqttMultimeter-macOS-x64.zip - name: Build osx-arm64 - run: dotnet publish Source\mqttMultimeter.csproj -r osx.12-arm64 -p:Configuration=Release -p:PublishSingleFile=true -p:PublishReadyToRun=false -p:IncludeNativeLibrariesForSelfExtract=true -p:IncludeAllContentForSelfExtract=true --self-contained true -property:Version=${{ env.VERSION }} + run: dotnet publish Source\mqttMultimeter.csproj -r osx-arm64 -p:Configuration=Release -p:PublishSingleFile=true -p:PublishReadyToRun=false -p:IncludeNativeLibrariesForSelfExtract=true -p:IncludeAllContentForSelfExtract=true --self-contained true -property:Version=${{ env.VERSION }} - name: Zip osx-arm64 build uses: vimtor/action-zip@v1 with: - files: Source\bin\Release\osx.12-arm64\publish\ + files: Source\bin\Release\osx-arm64\publish\ dest: mqttMultimeter-macOS-arm64.zip - name: Collect osx-arm64 artifacts