Skip to content

Commit

Permalink
Hope I fixed Builds
Browse files Browse the repository at this point in the history
  • Loading branch information
N0tExisting committed Dec 17, 2020
1 parent 5fa82c9 commit a092b9e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ jobs:
nuget-api-key: ${{ secrets.NuGetAPIKey }}
nuget-version: '5.x'

#- name: Run Nuget
# run: nuget restore Horion.sln
- name: Run Nuget
run: nuget restore Horion.sln

- name: MSBuild
run: msbuild Horion.sln -m
Expand All @@ -54,7 +54,10 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
# This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object,
# which include a `upload_url`. See this blog post for more info:
# https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: x64\Debug\Horion.dll
asset_name: Horion.dll
asset_content_type: application/vnd.microsoft.portable-executable
Expand Down
2 changes: 1 addition & 1 deletion Horion/Module/Modules/Jesus.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "Jesus.h"
#include "../../../Utils/Logger.h"
Jesus::Jesus() : IModule(0, Category::MOVEMENT, "Allows you to walk on water and lava. Also you can't be on fire") {
Jesus::Jesus() : IModule(0, Category::MOVEMENT, "Allows you to walk on water and lava. Also you shouldn't be on fire") {
registerBoolSetting("Solid", &this->Solid, Solid);
}
Jesus::~Jesus() {
Expand Down

0 comments on commit a092b9e

Please sign in to comment.