Skip to content

Commit 26a0a6c

Browse files
committed
build workflow fix and v1.3.1 release
1 parent fdc0884 commit 26a0a6c

File tree

2 files changed

+14
-10
lines changed

2 files changed

+14
-10
lines changed

.github/workflows/auto-release.yml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -131,25 +131,29 @@ jobs:
131131
if: env.EndProcess == 'false'
132132
run: dotnet restore
133133

134-
- name: Build for x64
134+
# 86 bit build
135+
136+
- name: Build for x86
135137
if: env.EndProcess == 'false'
136-
run: dotnet publish --configuration Release --runtime win-x64 --self-contained false --output ./bin/Publish/win-x64
138+
run: dotnet publish --configuration Release --runtime win-x86 --self-contained false --output ./bin/Publish/win-x86
137139

138-
- name: Zip x64
140+
- name: Zip x86
139141
if: env.EndProcess == 'false'
140-
run: Compress-Archive -Path "./bin/Publish/win-x64/*" -DestinationPath "./bin/Publish/win-x64.zip"
142+
run: Compress-Archive -Path "./bin/Publish/win-x86/*" -DestinationPath "./bin/Publish/win-x86.zip"
141143

142-
- name: Upload x64 Release Asset
144+
- name: Upload x86 Release Asset
143145
if: env.EndProcess == 'false'
144146
uses: actions/upload-release-asset@v1.0.1
145147
env:
146148
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
147149
with:
148150
upload_url: ${{ steps.create_release.outputs.upload_url }}
149-
asset_path: ./bin/Publish/win-x64.zip
150-
asset_name: win-x64.zip
151+
asset_path: ./bin/Publish/win-x86.zip
152+
asset_name: win-x86.zip
151153
asset_content_type: application/zip
152154

155+
# 64 bit build
156+
153157
- name: Build for x64
154158
if: env.EndProcess == 'false'
155159
run: dotnet publish --configuration Release --runtime win-x64 --self-contained false --output ./bin/Publish/win-x64

AutoPixAiCreditClaimer.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
</PropertyGroup>
1111

1212
<PropertyGroup>
13-
<Version>1.3.0</Version>
14-
<FileVersion>1.3.0</FileVersion>
15-
<AssemblyVersion>1.3.0</AssemblyVersion>
13+
<Version>1.3.1</Version>
14+
<FileVersion>1.3.1</FileVersion>
15+
<AssemblyVersion>1.3.1</AssemblyVersion>
1616
<AssemblyName>AutoPixAiCreditClaimer</AssemblyName>
1717
<Authors>BySuspect</Authors>
1818
<Description>Automation for Pixai.art</Description>

0 commit comments

Comments
 (0)