Skip to content

Commit

Permalink
ci: Change tar gzip to zip
Browse files Browse the repository at this point in the history
  • Loading branch information
echoy-harmonicinc committed Aug 29, 2023
1 parent f6009ff commit bec9a10
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,12 @@ jobs:
npm ci
npm run ropm-ci
npm run build
tar -C out/.roku-deploy-staging -zcf out/hlit-rafx-ssai-brs.tar.gz source
cd out/.roku-deploy-staging
zip -r ../hlit-rafx-ssai-brs.zip source
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: lib/out/hlit-rafx-ssai-brs.tar.gz
file: lib/out/hlit-rafx-ssai-brs.zip
tag: ${{ github.ref }}
overwrite: true
27 changes: 13 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,7 @@
# Harmonic RAFX SSAI adapter

## Installation
### ropm & BrighterScript (highly recommended)
1. [ropm](https://github.com/rokucommunity/ropm) package manager is supported. Install it by
```
ropm install @harmonicinc/vos_roku_rafx_ssai
```
1. Create a new player task. It should be launched by another UI logic script.
1. Import required libraries in your BrighterScript file
```
import "pkg:/source/roku_modules/harmonicinc_vos_roku_rafx_ssai/ssai.bs"
library "Roku_Ads.brs"
```

### Manual install
### Install from Release Artifact
1. Copy source files

> Choose one below
Expand Down Expand Up @@ -57,7 +45,18 @@
```
library "Roku_Ads.brs"
```


### Install from ropm
1. [ropm](https://github.com/rokucommunity/ropm) package manager is supported. Install it by
```
ropm install @harmonicinc/vos_roku_rafx_ssai
```
1. Create a new player task. It should be launched by another UI logic script.
1. Import required libraries in your BrighterScript file
```
import "pkg:/source/roku_modules/harmonicinc_vos_roku_rafx_ssai/ssai.bs"
library "Roku_Ads.brs"
```

## Usage
1. Create Harmonic RAFX adapter by
Expand Down

0 comments on commit bec9a10

Please sign in to comment.