Workflow file for this run
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: Tizen web app build | |
on: | |
push: | |
pull_request: | |
branches: [ main ] | |
env: | |
TIZEN_STUDIO_URL: "http://download.tizen.org/sdk/Installer/tizen-studio_5.1/web-cli_Tizen_Studio_5.5_ubuntu-64.bin" | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
fetch-depth: -${{ github.event.pull_request.commits }} | |
- name: Install Tizen Studio | |
run: | | |
wget -nc -O ${{ github.workspace }}/installer $TIZEN_STUDIO_URL | |
chmod a+x ${{ github.workspace }}/installer | |
.${{ github.workspace }}/installer --accept-license | |
- name: make cert and build | |
shell: bash | |
run: | | |
export PATH=$PATH:${{ github.workspace }}/tizen-studio/tools/ide/bin | |
tizen certificate -a MyTizen -p 1234 -c KR -s Seoul -ct Gangnamgu -o Tizen –u Development -n "Gildong Hong" -e gildonghong@example.org -f mycert | |
tizen build-app ${{ github.workspace }}/Tizen.web/ImageClassificationOffloading |