Skip to content

Commit

Permalink
Fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmfinol committed Dec 2, 2023
1 parent 0a73fea commit a306e06
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
17 changes: 16 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,6 @@ jobs:
deployToMicrosoftStore:
name: Deploy to the Microsoft Store
runs-on: windows-2022
container: unityci/editor:windows-2022.3.12f1-universal-windows-platform-3
needs: buildWSAPlayer
if: github.event.action == 'published' || (contains(github.event.inputs.workflow_mode, 'release') && contains(github.event.inputs.workflow_mode, 'WSAPlayer'))
steps:
Expand Down Expand Up @@ -626,6 +625,11 @@ jobs:
with:
files: "C:/Card-Game-Simulator.git/storebroker/en-us/PDP.xml"
replacements: "OUTPUT_RELEASE_NOTES=${{ steps.changelog.outputs.RELEASE_NOTES }}"
- name: Setup Unity UWP
uses: kuler90/setup-unity@v1
with:
unity-modules: universal-windows-platform
project-path: C:/Card-Game-Simulator.git
- name: Setup Developer Command Prompt for Microsoft Visual C++
uses: ilammy/msvc-dev-cmd@v1
- name: Setup MSBuild
Expand All @@ -640,6 +644,17 @@ jobs:
with:
files: "C:/Card-Game-Simulator.git/build/WSAPlayer/WSAPlayer/Card Game Simulator/Card Game Simulator.vcxproj"
replacements: "</PropertyGroup>=<ProjectName>CardGameSimulator</ProjectName></PropertyGroup>"
- name: Fix Unity Editor Path
working-directory: C:/Card-Game-Simulator.git
shell: pwsh
env:
UwpProjectDirectory: build\WSAPlayer\WSAPlayer
run: |
[xml]$manifest = get-content ".\$env:UwpProjectDirectory\UnityCommon.props"
$manifest.Project.PropertyGroup.UnityWSAPlayerDir = "C:\Program Files\Unity\Hub\Editor\2021.3.16f1\Editor\Data\PlaybackEngines\MetroSupport\"
$manifest.save(".\$env:UwpProjectDirectory\UnityCommon.props")
echo ".\$env:UwpProjectDirectory\UnityCommon.props"
cat ".\$env:UwpProjectDirectory\UnityCommon.props"
- name: Add Package.StoreAssociation.xml to .vcxproj
uses: mingjun97/file-regex-replace@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions docs/pages/roadmap.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ permalink: roadmap.html

# Roadmap

## What's New - v1.96
- Game-Play: Drop Stack on top of Cards or other Stacks
## What's New - v1.97
Minor Bug Fixes

## Active Sprint
- Game-Play: Special action buttons (i.e. button to reset rotation for all cards, button to turn all cards faceup, etc.)
Expand Down

0 comments on commit a306e06

Please sign in to comment.