File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff 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
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
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"
You can’t perform that action at this time.
0 commit comments