Skip to content

Commit

Permalink
pwsh...
Browse files Browse the repository at this point in the history
  • Loading branch information
ate47 committed Oct 11, 2023
1 parent 1b70e53 commit d69b35e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ jobs:
if: github.repository_owner == 'ate47' && github.ref == 'refs/heads/master'
shell: pwsh
run: |
[Convert]::FromBase64String("${{ secrets.PS4_VMCODES_B64 }}") | Out-File .\build\compiler\t7compiler\vm_codes.db2
$bytes = [Convert]::FromBase64String("${{ secrets.PS4_VMCODES_B64 }}")
$output = (gci ".\build\compiler\t7compiler\vm_codes.db2").FullName
[io.file]::WriteAllBytes($output, $bytes)
shell_scripts/compile.ps1 -PS4
"" > build\compiler\t7compiler\vm_codes.db2
- name: Save PS4 artefact
Expand Down

0 comments on commit d69b35e

Please sign in to comment.