feat: some basic action core logic

This commit is contained in:
Louis Seubert 2026-07-11 20:44:43 +02:00
commit 917952884e
Signed by: louis9902
GPG key ID: 4B9DB28F826553BD
7 changed files with 552 additions and 0 deletions

22
src/collection/pwsh.ps1 Normal file
View file

@ -0,0 +1,22 @@
# Copyright (c) The Geekeey Authors
# SPDX-License-Identifier: EUPL-1.2
using module ../Geekeey.Build.Pwsh.psd1
Set-StrictMode -Version Latest
$ErrorActionPreference = 'Stop'
$ProgressPreference = 'Ignore'
$PSNativeCommandUseErrorActionPreference = $true
$script = Get-ActionInput -Name "script" -Required
try
{
Invoke-Expression $script
}
catch
{
Write-ActionError "Script failed: $_"
exit 1
}