Skip to content

Commit bed755b

Browse files
committed
update remote workflow files
1 parent 51683f5 commit bed755b

File tree

2 files changed

+41
-43
lines changed

2 files changed

+41
-43
lines changed

.github/workflows/publish.yml

Lines changed: 21 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -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
@@ -94,7 +92,7 @@ jobs:
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 .

.github/workflows/test.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,19 @@ jobs:
2828
with:
2929
path: ${{ github.event.repository.name }}
3030

31-
- name: Checkout `unmanaged`
31+
- name: Checkout `data`
3232
uses: actions/checkout@v4.1.2
3333
with:
34-
repository: simulation-tree/unmanaged
34+
repository: simulation-tree/data
3535
token: ${{ secrets.PAT }}
36-
path: unmanaged
36+
path: data
3737

38-
- name: Checkout `simulation`
38+
- name: Checkout `shaders`
3939
uses: actions/checkout@v4.1.2
4040
with:
41-
repository: simulation-tree/simulation
41+
repository: simulation-tree/shaders
4242
token: ${{ secrets.PAT }}
43-
path: simulation
43+
path: shaders
4444

4545
- name: Checkout `collections`
4646
uses: actions/checkout@v4.1.2
@@ -49,26 +49,19 @@ jobs:
4949
token: ${{ secrets.PAT }}
5050
path: collections
5151

52-
- name: Checkout `shaders`
53-
uses: actions/checkout@v4.1.2
54-
with:
55-
repository: simulation-tree/shaders
56-
token: ${{ secrets.PAT }}
57-
path: shaders
58-
59-
- name: Checkout `data`
52+
- name: Checkout `simulation`
6053
uses: actions/checkout@v4.1.2
6154
with:
62-
repository: simulation-tree/data
55+
repository: simulation-tree/simulation
6356
token: ${{ secrets.PAT }}
64-
path: data
57+
path: simulation
6558

66-
- name: Checkout `data-systems`
59+
- name: Checkout `unmanaged`
6760
uses: actions/checkout@v4.1.2
6861
with:
69-
repository: simulation-tree/data-systems
62+
repository: simulation-tree/unmanaged
7063
token: ${{ secrets.PAT }}
71-
path: data-systems
64+
path: unmanaged
7265

7366
- name: Checkout `worlds`
7467
uses: actions/checkout@v4.1.2
@@ -83,11 +76,18 @@ jobs:
8376
repository: simulation-tree/types
8477
token: ${{ secrets.PAT }}
8578
path: types
79+
80+
- name: Checkout `data-systems`
81+
uses: actions/checkout@v4.1.2
82+
with:
83+
repository: simulation-tree/data-systems
84+
token: ${{ secrets.PAT }}
85+
path: data-systems
8686

8787
- name: Setup
8888
uses: actions/setup-dotnet@v4
8989
with:
90-
dotnet-version: 10.0.x
90+
dotnet-version: 9.0.x
9191

9292
- name: Test
9393
run: dotnet test "${{ github.event.repository.name }}/tests" -c Debug --logger "trx"

0 commit comments

Comments
 (0)