Skip to content

Commit

Permalink
v1.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tpill90 committed Dec 12, 2022
1 parent 70e226f commit 7d67a60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
runtime: ['win-x64', 'linux-x64', 'linux-arm64', 'osx-x64']
fail-fast: true
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -28,19 +28,16 @@ jobs:
echo "version=$version" >> $GITHUB_OUTPUT;
- run: apt-get update
- run: apt-get install zip -y
- run: dotnet restore --runtime "${{ matrix.runtime }}"
- name: Publish
run: >
version=${{ steps.vars.outputs.version }}
dotnet publish SteamPrefill/SteamPrefill.csproj \
--nologo \
--no-restore \
-o "publish/SteamPrefill-$version-${{ matrix.runtime }}" \
-c Release \
--runtime "${{ matrix.runtime }}" \
--self-contained true \
--version-suffix $suffix \
/p:PublishSingleFile=true \
/p:PublishReadyToRun=true \
/p:PublishTrimmed=true;
Expand Down
2 changes: 1 addition & 1 deletion SteamPrefill/SteamPrefill.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<AssemblyName>SteamPrefill</AssemblyName>
<RootNamespace>SteamPrefill</RootNamespace>
<VersionPrefix>1.8.1</VersionPrefix>
<VersionPrefix>1.8.2</VersionPrefix>
<Authors>tpill90</Authors>

<!-- Code analysis settings -->
Expand Down

0 comments on commit 7d67a60

Please sign in to comment.