Skip to content

Commit 6aefb13

Browse files
committed
drop OSX support and 32-bit windows support.
1 parent 695125f commit 6aefb13

1 file changed

Lines changed: 0 additions & 25 deletions

File tree

.github/workflows/dotnet.yml

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,6 @@ jobs:
2929
- name: Test
3030
run: dotnet test -v n
3131

32-
- name: Publish windows (x86)
33-
run: dotnet publish -c Release -r win-x86 -P:PublishSingleFile=true -p:PublishTrimmed=false --self-contained false HaloScriptPreprocessor
34-
- name: Upload artifact windows (x86)
35-
uses: actions/upload-artifact@v4
36-
with:
37-
name: win-x86
38-
path: HaloScriptPreprocessor/bin/Release/net8.0/win-x86/publish/
3932
- name: Publish windows (x64)
4033
run: dotnet publish -c Release -r win-x64 -P:PublishSingleFile=true -p:PublishTrimmed=false --self-contained false HaloScriptPreprocessor
4134
- name: Upload artifact windows (x64)
@@ -57,20 +50,6 @@ jobs:
5750
with:
5851
name: linux-arm64
5952
path: HaloScriptPreprocessor/bin/Release/net8.0/linux-arm64/publish/
60-
- name: Publish macOS (x64)
61-
run: dotnet publish -c Release -r osx-x64 -P:PublishSingleFile=true -p:PublishTrimmed=false --self-contained false HaloScriptPreprocessor
62-
- name: Upload artifact macOS (x64)
63-
uses: actions/upload-artifact@v4
64-
with:
65-
name: osx-x64
66-
path: HaloScriptPreprocessor/bin/Release/net8.0/osx-x64/publish/
67-
- name: Publish macOS 11.01 Big Sur (arm64)
68-
run: dotnet publish -c Release -r osx.11.0-arm64 -P:PublishSingleFile=true -p:PublishTrimmed=false --self-contained false HaloScriptPreprocessor
69-
- name: Upload artifact macOS 11.01 Big Sur (arm64)
70-
uses: actions/upload-artifact@v4
71-
with:
72-
name: osx.11.0-arm64
73-
path: HaloScriptPreprocessor/bin/Release/net8.0/osx.11.0-arm64/publish/
7453

7554
release:
7655
if: |
@@ -83,13 +62,9 @@ jobs:
8362
- uses: actions/download-artifact@v4
8463
- name: Compress artifacts
8564
run: |
86-
zip -r win-x86.zip win-x86
8765
zip -r win-x64.zip win-x64
8866
zip -r linux-x64.zip linux-x64
8967
zip -r linux-arm64.zip linux-arm64
90-
zip -r osx-x64.zip osx-x64
91-
# zip -r generic.zip generic
92-
# zip -r osx.11.0-arm64.zip osx.11.0-arm64
9368
- uses: ncipollo/release-action@v1
9469
with:
9570
prerelease: true

0 commit comments

Comments
 (0)