Skip to content
Merged
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
10 changes: 7 additions & 3 deletions .github/workflows/AutomatedRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,23 @@ jobs:

# Create repo user folder for the dependencies
- name: Create repo user folder
run: New-Item -ItemType directory -Path ..\..\Squirrelies
run: New-Item -ItemType directory -Path ..\..\SpeedRunTool

# Checkout latest dependencies code
- name: Checkout SRTHost
uses: actions/checkout@v2
with:
fetch-depth: 0
path: SRTHost
repository: Squirrelies/SRTHost
repository: SpeedRunTool/SRTHost

# GITHUB_WORKSPACE pathing is ass. Move this directory down one level.
- name: Move SRTHost down a folder to work with existing csproj pathing
run: Move-Item -Path SRTHost -Destination ..\..\Squirrelies
run: Move-Item -Path SRTHost -Destination ..\..\SpeedRunTool

# Create repo user folder for the dependencies
- name: Create repo user folder
run: New-Item -ItemType directory -Path ..\..\Squirrelies

# Checkout latest dependencies code
- name: Checkout ProcessMemory
Expand Down