mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 03:57:27 +00:00
Merge branch 'feature/add-docker-build-action' of https://github.com/PepperDash/Essentials into feature/add-docker-build-action
This commit is contained in:
commit
4c5849d52c
3 changed files with 10 additions and 3 deletions
7
.github/.vscode/settings.json
vendored
Normal file
7
.github/.vscode/settings.json
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"workbench.colorCustomizations": {
|
||||||
|
"activityBar.background": "#59014E",
|
||||||
|
"titleBar.activeBackground": "#7C016D",
|
||||||
|
"titleBar.activeForeground": "#FFF8FE"
|
||||||
|
}
|
||||||
|
}
|
||||||
4
.github/scripts/ZipBuildOutput.ps1
vendored
4
.github/scripts/ZipBuildOutput.ps1
vendored
|
|
@ -23,10 +23,10 @@ Get-ChildItem -recurse -Path "$($Env:GITHUB_WORKSPACE)\*" -include "*.clz", "*.c
|
||||||
Write-Host "allowing $($_)"
|
Write-Host "allowing $($_)"
|
||||||
$_;
|
$_;
|
||||||
}
|
}
|
||||||
} | Copy-Item -Destination ($destination)
|
} | Copy-Item -Destination ($destination) -Force
|
||||||
Write-Host "Getting matching files..."
|
Write-Host "Getting matching files..."
|
||||||
# Get any files from the output folder that match the following extensions
|
# Get any files from the output folder that match the following extensions
|
||||||
Get-ChildItem -Path $destination | Where-Object {($_.Extension -eq ".clz") -or ($_.Extension -eq ".cpz" -or ($_.Extension -eq ".cplz"))} | ForEach-Object {
|
Get-ChildItem -Path $destination | Where-Object { ($_.Extension -eq ".clz") -or ($_.Extension -eq ".cpz") -or ($_.Extension -eq ".cplz") } | ForEach-Object {
|
||||||
# Replace the extensions with dll or xml and create an array
|
# Replace the extensions with dll or xml and create an array
|
||||||
$filenames = @($($_ -replace "cpz|clz|cplz", "dll"), $($_ -replace "cpz|clz|cplz", "xml"))
|
$filenames = @($($_ -replace "cpz|clz|cplz", "dll"), $($_ -replace "cpz|clz|cplz", "xml"))
|
||||||
Write-Host "Filenames:"
|
Write-Host "Filenames:"
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
Subproject commit 15206840b3e6338f695e4ffba634a72e51ea1be5
|
Subproject commit acebe6b43b28cc3a93f899e9714292a0cc1ab2cc
|
||||||
Loading…
Add table
Reference in a new issue