Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
insomnious authored Jan 25, 2024
1 parent 59da632 commit cedf074
Showing 1 changed file with 23 additions and 9 deletions.
32 changes: 23 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,21 +88,35 @@ jobs:
id: buildpatch
shell: pwsh
run: .\download-buildpatchtool.ps1

- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '16.x'
cache: "yarn"

- name: Print debug info
run: dotnet --info

- name: Deploy to Epic
if: ${{ inputs.deploy-epic == true }}
shell: pwsh
run: |
echo "${{ steps.setOutputs.outputs.epicBuildString }}"
$rootDir = Resolve-Path "."
$extractFolder = Join-Path $rootDir "BuildPatchTool"
$binaryPath = Join-Path $extractFolder "Engine/Binaries/Win64/BuildPatchTool.exe"
$tempFolderName = "EPIC_TEMP"
$version = "1.10.0"
$executableName = "Vortex.exe"
$folderName = ".\dist\win-unpacked"
$buildVersionString = "${{ steps.setOutputs.outputs.epicBuildString }}"
Write-Output "$rootDir"
Write-Output "$extractFolder"
Write-Output "$binaryPath"
Write-Output "$folderName"
if (Test-Path -Path "$folderName") {
Write-Output "$folderName folder exists"
} else {
Write-Output "$folderName folder not found"
Exit 1
}
# ./dist/win-unpacked
env:
EPIC_ORGID: ${{ secrets.EPIC_ORGID }}
Expand Down

0 comments on commit cedf074

Please sign in to comment.