Should work :fingerscrossed:
Some checks failed
Actions Testing Workflow / build (push) Failing after 25s

This commit is contained in:
Steven Tracey 2024-10-27 19:02:53 -04:00
parent cd4c7ac4fc
commit 866dbd9c6e
2 changed files with 7 additions and 5 deletions

View File

@ -38,10 +38,11 @@ jobs:
- name: Prepare artifacts
run: |
echo "Current working directory: $PWD"
Get-ChildItem -Path .\artifacts\ -Recurse | Remove-Item -force -recurse
Remove-Item .\artifacts\ -Force
$version = (Select-String -Path "build.gradle" -Pattern "version" | Where-Object { $_ -notmatch "id" -and $_ -notmatch ":" } | ForEach-Object { [regex]::Match($_, "'(.*?)'").Groups[1].Value })
Write-Output $version
Get-ChildItem -Path artifacts -Recurse | Remove-Item -force -recurse
if (Test-Path -Path .\artifacts) { Remove-Item -Path .\artifacts -Recurse -Force }
$version = (Select-String -Path "build.gradle" -Pattern "^\s*version\s*'([^']+)'" | ForEach-Object { $_.Matches[0].Groups[1].Value })
echo Version: $version
New-Item -Path "artifacts" -ItemType Directory
Copy-Item -Path "./src/build/ActionsTesting.exe" -Destination "./artifacts/ActionsTesting-$version.exe" -Verbose
ISCC.exe /?
- name: Upload artifacts

3
.gitignore vendored
View File

@ -1 +1,2 @@
src/build/
src/build/
artifacts/