@@ -15,19 +15,19 @@ jobs:
1515 with :
1616 path : ${{ github.event.repository.name }}
1717
18- - name : Checkout `unmanaged `
18+ - name : Checkout `data `
1919 uses : actions/checkout@v4.1.2
2020 with :
21- repository : simulation-tree/unmanaged
21+ repository : simulation-tree/data
2222 token : ${{ secrets.PAT }}
23- path : unmanaged
23+ path : data
2424
25- - name : Checkout `simulation `
25+ - name : Checkout `shaders `
2626 uses : actions/checkout@v4.1.2
2727 with :
28- repository : simulation-tree/simulation
28+ repository : simulation-tree/shaders
2929 token : ${{ secrets.PAT }}
30- path : simulation
30+ path : shaders
3131
3232 - name : Checkout `collections`
3333 uses : actions/checkout@v4.1.2
@@ -36,26 +36,19 @@ jobs:
3636 token : ${{ secrets.PAT }}
3737 path : collections
3838
39- - name : Checkout `shaders`
40- uses : actions/checkout@v4.1.2
41- with :
42- repository : simulation-tree/shaders
43- token : ${{ secrets.PAT }}
44- path : shaders
45-
46- - name : Checkout `data`
39+ - name : Checkout `simulation`
4740 uses : actions/checkout@v4.1.2
4841 with :
49- repository : simulation-tree/data
42+ repository : simulation-tree/simulation
5043 token : ${{ secrets.PAT }}
51- path : data
44+ path : simulation
5245
53- - name : Checkout `data-systems `
46+ - name : Checkout `unmanaged `
5447 uses : actions/checkout@v4.1.2
5548 with :
56- repository : simulation-tree/data-systems
49+ repository : simulation-tree/unmanaged
5750 token : ${{ secrets.PAT }}
58- path : data-systems
51+ path : unmanaged
5952
6053 - name : Checkout `worlds`
6154 uses : actions/checkout@v4.1.2
@@ -70,13 +63,18 @@ jobs:
7063 repository : simulation-tree/types
7164 token : ${{ secrets.PAT }}
7265 path : types
66+
67+ - name : Checkout `data-systems`
68+ uses : actions/checkout@v4.1.2
69+ with :
70+ repository : simulation-tree/data-systems
71+ token : ${{ secrets.PAT }}
72+ path : data-systems
7373
7474 - name : Setup
7575 uses : actions/setup-dotnet@v4
7676 with :
77- dotnet-version : |
78- 9.0.x
79- 10.0.x
77+ dotnet-version : 9.0.x
8078
8179 - name : Set VERSION variable from tag
8280 run : echo "VERSION=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_ENV
9492 run : dotnet build "${{ github.event.repository.name }}/tests" -c Release /p:Version=${VERSION}
9593
9694 - name : Test
97- run : dotnet test "${{ github.event.repository.name }}/tests" -c Release --logger "trx" --framework net10.0
95+ run : dotnet test "${{ github.event.repository.name }}/tests" -c Release --logger "trx"
9896
9997 - name : Pack `Shaders.Systems`
10098 run : dotnet pack "${{ github.event.repository.name }}/source" /p:Version=${VERSION} --no-build --output .
0 commit comments