-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is a pull request description
- Loading branch information
Showing
20 changed files
with
653 additions
and
294 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,10 +3,10 @@ | |
"isRoot": true, | ||
"tools": { | ||
"tcli": { | ||
"version": "0.2.3", | ||
"version": "0.2.4", | ||
"commands": [ | ||
"tcli" | ||
] | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,33 @@ | ||
name: Publish Mod To TS | ||
|
||
on: | ||
push: | ||
tags: "*" | ||
push: | ||
tags: "*" | ||
|
||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Use checkout to publish the files in your repo | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Dotnet | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: "8.x" | ||
cache: true | ||
cache-dependency-path: '**/packages.lock.json' | ||
|
||
- name: Restore and Build | ||
run: | | ||
dotnet restore | ||
dotnet restore --locked-mode | ||
dotnet tool restore | ||
dotnet build | ||
- name: Publish to TS | ||
env: | ||
TCLI_AUTH_TOKEN: ${{ secrets.TCLI_AUTH_TOKEN }} | ||
PACKAGE_VERSION: ${{ github.ref_name }} | ||
run: | | ||
dotnet tcli publish --config-path "./tspublish/thunderstore.toml" --package-version ${{ github.ref_name }} | ||
dotnet publish -c Release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# HostFurnitureReset Changelog | ||
|
||
## Ver 1.0.2 | ||
|
||
- Recompiled against v61 | ||
- Updated publish workflow |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<Project> | ||
|
||
<PropertyGroup> | ||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> | ||
<GenerateAssemblyInfo>true</GenerateAssemblyInfo> | ||
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute> | ||
<LangVersion>latest</LangVersion> | ||
<Nullable>enable</Nullable> | ||
<PublishProfile>Thunderstore</PublishProfile> | ||
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>embedded</DebugType> | ||
<PathMap>$([System.IO.Path]::GetFullPath('$(SolutionDir)'))=./</PathMap> | ||
</PropertyGroup> | ||
|
||
</Project> |
Oops, something went wrong.