Update deployment domain #38
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Dependencies | |
run: yarn install --immutable | |
- name: Build Player | |
run: yarn run build:player | |
- name: Build IMA-Plugin | |
run: yarn run build:ima-plugin | |
- name: Build Recommendation-Plugin | |
run: yarn run build:recommendation-plugin |