Skip to content

Commit

Permalink
Added releaseVersion option
Browse files Browse the repository at this point in the history
  • Loading branch information
Cibbi committed Oct 24, 2023
1 parent 6736cf1 commit 368c55d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ The release URL to set in the `package.json`.

The release URL to set in the `package.json` for the unitypackage version.

### `releaseVersion`

The version to set in the `package.json`. If not specified it will be taken from the `package.json`.

### `noVcc`

Skips the build of the `vcc` package, the `package.json` will not contain an url for the unitypackage version.
Expand Down
7 changes: 7 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ inputs:
required: false
default: ''

releaseVersion:
description: 'The release version to set in the package.json'
required: false
default: ''

noVcc:
description: 'Do not build the vcc package'
required: false
Expand Down Expand Up @@ -51,6 +56,8 @@ runs:
- ${{ inputs.releaseUrl }}
- '--unityReleaseUrl'
- ${{ inputs.unityReleaseUrl }}
- '--releaseVersion'
- ${{ inputs.releaseVersion }}
- '-novcc'
- ${{ inputs.noVcc }}
- '-nounity'
Expand Down

0 comments on commit 368c55d

Please sign in to comment.