Skip to content

Commit 2001c18

Browse files
committed
Clean up the build a little more
1 parent d13ea35 commit 2001c18

4 files changed

Lines changed: 47 additions & 1922 deletions

File tree

.earthlyignore

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1-
# ignore Modules (because we output there now)
2-
/Modules/*
1+
.earthlyignore
2+
.editorconfig
3+
.github/*
4+
.vscode/*
5+
build.earth
6+
# ignore Output (because we output there now)
7+
/Output/*
38
# These aren't part of the module (yet)
49
/PotentialContribution/*
510
/Content/*
11+

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ jobs:
4343
with:
4444
name: Modules
4545
path: |
46-
Modules/*
47-
!Modules/*-TestResults
46+
Output/*
47+
!Output/results/*
4848
4949
- uses: actions/upload-artifact@v4
5050
with:
5151
name: TestResults
52-
path: Modules/ModuleBuilder-TestResults
52+
path: Output/results
5353

5454
# These ones are just for the test matrix
5555
- name: Upload Tests
@@ -84,7 +84,7 @@ jobs:
8484
uses: actions/download-artifact@v4
8585
with:
8686
name: Modules
87-
path: Modules # /home/runner/work/ModuleBuilder/ModuleBuilder/Modules
87+
path: Output # /home/runner/work/ModuleBuilder/ModuleBuilder/Output
8888
- name: Install Output Modules
8989
shell: pwsh
9090
run: | # PowerShell
@@ -95,7 +95,7 @@ jobs:
9595
Join-Path $HOME '.local/share/powershell/Modules'
9696
}
9797
98-
Get-ChildItem -Directory Modules -OutVariable Modules
98+
Get-ChildItem -Directory Output -OutVariable Modules
9999
| Move-Item -Destination { Join-Path $ModuleDestination $_.Name } -Force
100100
101101
Write-Host "Installing $($Modules -join ', ') to $ModuleDestination"

0 commit comments

Comments
 (0)