Skip to content

Commit

Permalink
tag: v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Maicarons committed Jun 9, 2024
1 parent 9364e39 commit ff33113
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: dotnet restore

- name: Build
run: dotnet build --configuration Release
run: dotnet build

- name: Create Release
id: create_release
Expand All @@ -32,9 +32,9 @@ jobs:
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: TODO New Release.
body: New Release ${{ github.ref }}.
draft: false
prerelease: false
prerelease: true

- name: Upload Release Asset
uses: actions/upload-release-asset@v1
Expand All @@ -43,3 +43,5 @@ jobs:
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: .\bin\netstandard2.1\RealAirplaneTag.dll
asset_name: RealAirplaneTag.dll
asset_content_type: application/x-msdownload
9 changes: 9 additions & 0 deletions MyPluginInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace RealAirplaneTag
{
public static class MyPluginInfo
{
public const string PLUGIN_GUID = "RealAirplaneTag";
public const string PLUGIN_NAME = "RealAirplaneTag";
public const string PLUGIN_VERSION = "0.1.2";
}
}
2 changes: 2 additions & 0 deletions Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
namespace RealAirplaneTag
{
[BepInPlugin(MyPluginInfo.PLUGIN_GUID, MyPluginInfo.PLUGIN_NAME, MyPluginInfo.PLUGIN_VERSION)]

Check failure on line 17 in Plugin.cs

View workflow job for this annotation

GitHub Actions / build

Ambiguity between 'MyPluginInfo.PLUGIN_GUID' and 'MyPluginInfo.PLUGIN_GUID'

Check failure on line 17 in Plugin.cs

View workflow job for this annotation

GitHub Actions / build

Ambiguity between 'MyPluginInfo.PLUGIN_NAME' and 'MyPluginInfo.PLUGIN_NAME'

Check failure on line 17 in Plugin.cs

View workflow job for this annotation

GitHub Actions / build

Ambiguity between 'MyPluginInfo.PLUGIN_VERSION' and 'MyPluginInfo.PLUGIN_VERSION'

Check failure on line 17 in Plugin.cs

View workflow job for this annotation

GitHub Actions / build

Ambiguity between 'MyPluginInfo.PLUGIN_GUID' and 'MyPluginInfo.PLUGIN_GUID'

Check failure on line 17 in Plugin.cs

View workflow job for this annotation

GitHub Actions / build

Ambiguity between 'MyPluginInfo.PLUGIN_NAME' and 'MyPluginInfo.PLUGIN_NAME'

Check failure on line 17 in Plugin.cs

View workflow job for this annotation

GitHub Actions / build

Ambiguity between 'MyPluginInfo.PLUGIN_VERSION' and 'MyPluginInfo.PLUGIN_VERSION'

Check failure on line 17 in Plugin.cs

View workflow job for this annotation

GitHub Actions / build

Ambiguity between 'MyPluginInfo.PLUGIN_GUID' and 'MyPluginInfo.PLUGIN_GUID'

Check failure on line 17 in Plugin.cs

View workflow job for this annotation

GitHub Actions / build

Ambiguity between 'MyPluginInfo.PLUGIN_NAME' and 'MyPluginInfo.PLUGIN_NAME'

Check failure on line 17 in Plugin.cs

View workflow job for this annotation

GitHub Actions / build

Ambiguity between 'MyPluginInfo.PLUGIN_VERSION' and 'MyPluginInfo.PLUGIN_VERSION'

Check failure on line 17 in Plugin.cs

View workflow job for this annotation

GitHub Actions / build

Ambiguity between 'MyPluginInfo.PLUGIN_GUID' and 'MyPluginInfo.PLUGIN_GUID'

Check failure on line 17 in Plugin.cs

View workflow job for this annotation

GitHub Actions / build

Ambiguity between 'MyPluginInfo.PLUGIN_NAME' and 'MyPluginInfo.PLUGIN_NAME'

Check failure on line 17 in Plugin.cs

View workflow job for this annotation

GitHub Actions / build

Ambiguity between 'MyPluginInfo.PLUGIN_VERSION' and 'MyPluginInfo.PLUGIN_VERSION'

Check failure on line 17 in Plugin.cs

View workflow job for this annotation

GitHub Actions / build

Ambiguity between 'MyPluginInfo.PLUGIN_GUID' and 'MyPluginInfo.PLUGIN_GUID'

Check failure on line 17 in Plugin.cs

View workflow job for this annotation

GitHub Actions / build

Ambiguity between 'MyPluginInfo.PLUGIN_NAME' and 'MyPluginInfo.PLUGIN_NAME'

Check failure on line 17 in Plugin.cs

View workflow job for this annotation

GitHub Actions / build

Ambiguity between 'MyPluginInfo.PLUGIN_VERSION' and 'MyPluginInfo.PLUGIN_VERSION'

Check failure on line 17 in Plugin.cs

View workflow job for this annotation

GitHub Actions / build

Ambiguity between 'MyPluginInfo.PLUGIN_GUID' and 'MyPluginInfo.PLUGIN_GUID'

Check failure on line 17 in Plugin.cs

View workflow job for this annotation

GitHub Actions / build

Ambiguity between 'MyPluginInfo.PLUGIN_NAME' and 'MyPluginInfo.PLUGIN_NAME'

Check failure on line 17 in Plugin.cs

View workflow job for this annotation

GitHub Actions / build

Ambiguity between 'MyPluginInfo.PLUGIN_VERSION' and 'MyPluginInfo.PLUGIN_VERSION'


public class Plugin : BaseUnityPlugin
{
private void Awake()
Expand Down

0 comments on commit ff33113

Please sign in to comment.