Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ module.exports = {
'error',
'always'
],
'@typescript-eslint/parameter-properties': 'off',
'@typescript-eslint/prefer-nullish-coalescing': 'off',
"@typescript-eslint/prefer-optional-chain": 'off',
'@typescript-eslint/prefer-readonly': 'off',
Expand Down
40 changes: 40 additions & 0 deletions .github/workflows/initialize-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Initialize Release

on:
workflow_dispatch:
inputs:
branch:
type: string
description: "Create release from this branch:"
default: "master"
required: true
releaseType:
type: choice
description: "Release type:"
required: true
default: "patch"
options:
- major
- minor
- patch
- prerelease
customVersion:
type: string
description: "Version override: (ignore release type)"
default: ""
required: false
installDependencies:
type: boolean
description: "Install latest RokuCommunity dependencies"
required: true
default: true

jobs:
run:
uses: rokucommunity/workflows/.github/workflows/initialize-release.yml@master
with:
branch: ${{ github.event.inputs.branch }}
releaseType: ${{ github.event.inputs.releaseType }}
customVersion: ${{ github.event.inputs.customVersion }}
installDependencies: ${{ github.event.inputs.installDependencies }}
secrets: inherit
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,34 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0



## [3.12.4](https://github.com/rokucommunity/roku-deploy/compare/v3.12.3...v3.12.4) - 2025-01-22
### Fixed
- fixed an issue with `577` error codes ([#182](https://github.com/rokucommunity/roku-deploy/pull/182))



## [3.12.3](https://github.com/rokucommunity/roku-deploy/compare/v3.12.2...v3.12.3) - 2024-12-06
### Changed
- Identify when a 577 error is thrown, send a new developer friendly message ([#180](https://github.com/rokucommunity/roku-deploy/pull/180))
### Fixed
- issues with detecting "check for updates required" ([#181](https://github.com/rokucommunity/roku-deploy/pull/181))



## [3.12.2](https://github.com/rokucommunity/roku-deploy/compare/v3.12.1...v3.12.2) - 2024-10-18
### Fixed
- updated regex to find a signed package on `/plugin_package` page ([#176](https://github.com/rokucommunity/roku-deploy/pull/176))



## [3.12.1](https://github.com/rokucommunity/roku-deploy/compare/v3.12.0...v3.12.1) - 2024-07-19
### Changed
- fix-node14 CI/CD issues ([#165](https://github.com/rokucommunity/roku-deploy/pull/165))
### Fixed
- bug with absolute paths and `getDestPath` ([#171](https://github.com/rokucommunity/roku-deploy/pull/171))



## [3.12.0](https://github.com/rokucommunity/roku-deploy/compare/v3.11.3...v3.12.0) - 2024-03-01
### Changed
- Support overriding various package upload form data ([#136](https://github.com/rokucommunity/roku-deploy/pull/136))
Expand Down
Loading