Skip to content
Open
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/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
steps:
# Checkout for the current repo (plugin) into subfolder ./SurfTimer.Plugin
- name: Checkout Plugin repo into subfolder
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: SurfTimer.Plugin

# Checkout for SurfTimer.Shared as a "sibling" folder (NOT a submodule)
- name: Checkout Shared repo (sibling folder)
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: tslashd/SurfTimer.Shared
path: SurfTimer.Shared
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ jobs:

# Checkout plugin repo at the tag
- name: Checkout plugin repository (Timer)
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: Timer
ref: ${{ env.RELEASE_TAG }}

# Checkout SurfTimer.Shared as sibling folder (ProjectReference resolves via ../../SurfTimer.Shared)
- name: Checkout SurfTimer.Shared
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: tslashd/SurfTimer.Shared
path: SurfTimer.Shared
Expand Down