Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
cp -a Assets/. Release/Samples~/Playground

- name: Copy to package repo (main branch)
uses: cpina/github-action-push-to-another-repository@main
uses: tudddorrr/github-action-push-to-another-repository@main
if: "!contains(github.event.head_commit.message, '--no-release') && !contains(github.event.head_commit.message, 'pre.')"
env:
API_TOKEN_GITHUB: ${{ secrets.PAT }}
Expand All @@ -40,7 +40,7 @@ jobs:
commit-message: ${{ env.COMMIT_MESSAGE }}

- name: Copy to package repo (version branch)
uses: cpina/github-action-push-to-another-repository@main
uses: tudddorrr/github-action-push-to-another-repository@main
env:
API_TOKEN_GITHUB: ${{ secrets.PAT }}
with:
Expand Down
2 changes: 2 additions & 0 deletions Packages/com.trytalo.talo/Runtime/BaseAPI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ protected async Task<string> Call(Uri uri, string method, string content = "")
www.SetRequestHeader("Authorization", $"Bearer {manager.settings.accessKey}");
www.SetRequestHeader("Content-Type", "application/json");
www.SetRequestHeader("Accept", "application/json");
www.SetRequestHeader("X-Talo-Dev-Build", Debug.isDebugBuild ? "1" : "0");
www.SetRequestHeader("X-Talo-Include-Dev-Data", Debug.isDebugBuild ? "1" : "0");

var op = www.SendWebRequest();

Expand Down
2 changes: 1 addition & 1 deletion Packages/com.trytalo.talo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "com.trytalo.talo",
"version": "0.6.0",
"version": "0.7.0",
"displayName": "Talo Game Services",
"description": "Talo (https://trytalo.com) is an open-source game backend with services designed to help you build games faster. You can currently:\n\n- Identify players\n- Store persistent data across players\n- Track events (levelling up, finding loot, etc)\n- Display high scores with leaderboards\n- Store and load player saves",
"unity": "2019.1",
Expand Down