Skip to content

Commit c9fd184

Browse files
unity-uwp-builder@v1.0.6
1 parent 8f628f2 commit c9fd184

10 files changed

Lines changed: 329 additions & 821 deletions

File tree

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Update Release Tags
2+
on:
3+
push:
4+
tags: ['*']
5+
workflow_dispatch:
6+
jobs:
7+
update-release-tags:
8+
runs-on: ubuntu-latest
9+
permissions:
10+
contents: write
11+
steps:
12+
- uses: actions/checkout@v4
13+
with:
14+
fetch-depth: 0
15+
- uses: RageAgainstThePixel/update-action-release-tags@v1

.github/workflows/validate.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
TEMPLATE_PATH: ''
1919
UNITY_PROJECT_PATH: '' # set by unity-setup action
2020
runs-on: ${{ matrix.os }}
21+
permissions:
22+
contents: read
2123
strategy:
2224
fail-fast: false
2325
matrix:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ steps:
1414
# required for unity-uwp-builder action
1515
- uses: microsoft/setup-msbuild@v2
1616

17-
# builds visual studio project for UWP and packages it for store upload
18-
- uses: RageAgainstThePixel/unity-uwp-builder@v1
17+
- uses: buildalon/unity-uwp-builder@v1
1918
id: uwp-build
2019
with:
2120
project-path: '/path/to/your/build/output/directory'
@@ -39,6 +38,7 @@ steps:
3938
| `architecture` | The architecture to use when building the visual studio project. Can be: `x86`, `x64`, `ARM`, or `ARM64`. | Defaults to `ARM64`. |
4039
| `package-type` | The type of package to generate. Can be: `sideload` or `upload`. | Defaults to `sideload`. |
4140
| `certificate-path` | The path to the certificate to use when packaging the UWP project. | Required when `package-type` is `sideload`. Defaults to the Unity generated test certificate. |
41+
| `certificate-password` | The password for the certificate. | Required when providing your own certificate. |
4242

4343
### outputs
4444

action.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@ inputs:
2323
required: false
2424
default: 'sideload'
2525
certificate-path:
26-
description: 'The path to the certificate to use when packaging the UWP project. Required when `package-type` is `sideload`. If no certificate is provided, then a test certificate is created.'
26+
description: 'The path to the certificate to use when packaging the UWP project. Required when `package-type` is `sideload`. Defaults to the Unity generated test certificate.'
27+
required: false
28+
certificate-password:
29+
description: 'The password for the certificate to use when packaging the UWP project. Required when providing your own certificate.'
2730
required: false
2831
outputs:
2932
executable:

dist/index.js

Lines changed: 212 additions & 731 deletions
Large diffs are not rendered by default.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/licenses.txt

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -242,16 +242,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
242242
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
243243
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
244244
SOFTWARE.
245-
246-
247-
uuid
248-
MIT
249-
The MIT License (MIT)
250-
251-
Copyright (c) 2010-2020 Robert Kieffer and other contributors
252-
253-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
254-
255-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
256-
257-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0 commit comments

Comments
 (0)