Skip to content

Commit

Permalink
Convert osx to new graph
Browse files Browse the repository at this point in the history
  • Loading branch information
chkr1011 committed Feb 17, 2024
1 parent 7fbb60e commit 1bce576
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 1bce576

Please sign in to comment.