Skip to content

Commit

Permalink
Clean up repo root
Browse files Browse the repository at this point in the history
  • Loading branch information
electroly committed Nov 2, 2024
1 parent 98840ee commit 65d1986
Show file tree
Hide file tree
Showing 9 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/jackpot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- name: Publish
shell: pwsh
run: .\ps1\Publish-Release.ps1
run: .\src\Publish-Release.ps1

- name: Upload
uses: actions/upload-artifact@v4
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions ps1/Publish-Release.ps1 → src/Publish-Release.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,8 @@ function Get-Vlc

function Copy-MiscFiles
{
Copy-Item -Path "$root\COPYING" -Destination "$buildDir\COPYING"
Copy-Item -Path "$root\NOTICE" -Destination "$buildDir\NOTICE"
Copy-Item -Path "$root\docs\COPYING" -Destination "$buildDir\COPYING"
Copy-Item -Path "$root\docs\NOTICE" -Destination "$buildDir\NOTICE"
Copy-Item -Path "$root\src\AppxManifest.xml" -Destination "$buildDir\AppxManifest.xml"

[System.IO.Directory]::CreateDirectory("$buildDir\assets") | Out-Null
Expand Down Expand Up @@ -235,7 +235,7 @@ function Add-TemporarySignature
Export-Certificate -Cert $cert -FilePath "$publishDir\ci-certificate.cer" | Out-Null

# Sign the .msix.
& "$root\ps1\Add-MsixSignature.ps1" -CertificatePath "$publishDir\private.pfx" -CertificatePassword "password"
& "$root\src\Add-MsixSignature.ps1" -CertificatePath "$publishDir\private.pfx" -CertificatePassword "password"
}
finally
{
Expand Down

0 comments on commit 65d1986

Please sign in to comment.