diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index d7f93f0..988d54b 100755 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -10,6 +10,8 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v1 + with: + ref: master - uses: warrenbuckley/Setup-MSBuild@v1 - name: Compile Release working-directory: build diff --git a/README.md b/README.md index 8cf1f9f..fe2919f 100755 --- a/README.md +++ b/README.md @@ -2,8 +2,6 @@ ![alt-text](screenshots/project_symmetry.jpg "Project Symmetry") - - ## About A simple first person shooter that may or may not have anything to do with the concept of symmetry. @@ -19,8 +17,9 @@ libraries: | [Nuklear](https://github.com/vurtun/nuklear) | In-game and editor UI | | [GLAD](https://github.com/dav1dde/glad-web) | OpenGL Extension Loading | -For more information visit the development blog at my website: [Link]("http://shariqshah.com/tags/project-symmetry/") +For more information visit the development blog at my website: [Link](http://shariqshah.com/tags/project-symmetry/) +Binary builds are available on the project's Itch.io page: [Link](https://bluerriq.itch.io/symmetry) ## Building The game uses the [GENie](https://github.com/bkaradzic/GENie) build system. The game can be build by llowing steps: diff --git a/src/common/version.h b/src/common/version.h index 0d3d005..c408b25 100755 --- a/src/common/version.h +++ b/src/common/version.h @@ -4,7 +4,7 @@ /* Auto generated version file. DO NOT MODIFY */ #define SYMMETRY_VERSION_MAJOR 0 #define SYMMETRY_VERSION_MINOR 1 -#define SYMMETRY_VERSION_REVISION 298 +#define SYMMETRY_VERSION_REVISION 299 #define SYMMETRY_VERSION_BRANCH "dev" #endif \ No newline at end of file diff --git a/tools/create_tag_from_release_build.bat b/tools/create_tag_from_release_build.bat new file mode 100755 index 0000000..6944ba1 --- /dev/null +++ b/tools/create_tag_from_release_build.bat @@ -0,0 +1,7 @@ +@echo off + +call regen_project.bat +msbuild ..\build\vs2019\Symmetry.sln -m -p:Configuration=Release +set version_number=<..\bin\version.txt + +git tag %version_number% \ No newline at end of file