mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2026-07-21 01:59:44 +00:00
d938292243
Bumps the actions group with 4 updates in the / directory: [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact), [Apple-Actions/import-codesign-certs](https://github.com/apple-actions/import-codesign-certs) and [microsoft/microsoft-store-apppublisher](https://github.com/microsoft/microsoft-store-apppublisher). Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) Updates `actions/download-artifact` from 6 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v6...v8) Updates `Apple-Actions/import-codesign-certs` from 6 to 7 - [Release notes](https://github.com/apple-actions/import-codesign-certs/releases) - [Commits](https://github.com/apple-actions/import-codesign-certs/compare/v6...v7) Updates `microsoft/microsoft-store-apppublisher` from 1.1 to 1.3 - [Release notes](https://github.com/microsoft/microsoft-store-apppublisher/releases) - [Commits](https://github.com/microsoft/microsoft-store-apppublisher/compare/v1.1...v1.3) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: Apple-Actions/import-codesign-certs dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: microsoft/microsoft-store-apppublisher dependency-version: '1.3' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
45 lines
1.2 KiB
YAML
45 lines
1.2 KiB
YAML
name: Upload (Windows Store)
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
version:
|
|
required: true
|
|
type: string
|
|
trigger_type:
|
|
required: true
|
|
type: string
|
|
|
|
jobs:
|
|
upload:
|
|
name: Upload (Windows Store)
|
|
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- name: Download bundle (Windows Store)
|
|
uses: actions/download-artifact@v8
|
|
with:
|
|
name: openttd-windows-store
|
|
path: openttd-windows-store
|
|
|
|
- name: Configure Microsoft Store CLI
|
|
uses: microsoft/microsoft-store-apppublisher@v1.3
|
|
|
|
- name: Reconfigure store credentials
|
|
run: msstore reconfigure `
|
|
--tenantId ${{ secrets.AZURE_TENANT_ID }} `
|
|
--sellerId ${{ secrets.WINSTORE_SELLER_ID }} `
|
|
--clientId ${{ secrets.AZURE_WINSTORE_APPLICATION_CLIENT_ID }} `
|
|
--clientSecret ${{ secrets.AZURE_WINSTORE_APPLICATION_SECRET }}
|
|
|
|
- name: Publish msix package
|
|
shell: pwsh
|
|
run: |
|
|
$bundle = Get-ChildItem openttd-windows-store/internal/openttd-*.msixbundle | Select-Object -First 1
|
|
if (-not $bundle) {
|
|
throw "No msixbundle found"
|
|
}
|
|
|
|
msstore publish $bundle.FullName -id 9NCJG5RVRR1C -v
|