Skip to content

Commit

Permalink
Hopefully fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Friendly0Fire committed Mar 6, 2024
1 parent 1e1be29 commit 5f70bdd
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,23 @@ jobs:

- run: nuget restore "${env:GITHUB_WORKSPACE}\GW2Clarity.sln"

- name: Export GitHub Actions cache environment variables
uses: actions/github-script@v6
with:
script: |
core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || '');
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || '');
- name: Build Release
if: startsWith(github.ref, 'refs/tags/v')
run: msbuild.exe "${env:GITHUB_WORKSPACE}\GW2Clarity.sln" /t:Build /p:Configuration=Release /p:Platform=x64 /p:GitHubDefs=USE_GITHUB_VER
env:
VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite"

- name: Build Debug
run: msbuild.exe "${env:GITHUB_WORKSPACE}\GW2Clarity.sln" /t:Build /p:Configuration=Debug /p:Platform=x64 /p:GitHubDefs=USE_GITHUB_VER
env:
VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite"

- name: Save nightly build from master
uses: actions/upload-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion GW2Clarity/common
2 changes: 1 addition & 1 deletion GW2Clarity/include/Tag.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#pragma once
#include <neargye/semver.hpp>
#include <semver.hpp>

static constexpr semver::version CurrentVersion { 0, 0, 1 };

0 comments on commit 5f70bdd

Please sign in to comment.