fix: add autolaunch text after the language loads #53
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: Build TizenBrew Standalone Application and Release | |
on: | |
push: | |
tags: | |
- 'v*.*.*' | |
env: | |
TIZEN_STUDIO_VER: 5.6 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v4 | |
- name: Set env | |
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | |
- name: Install modules and transpile service | |
working-directory: tizenbrew-app/TizenBrew/service | |
run: | | |
sudo apt install -y expect zip coreutils | |
sudo curl -Lo /usr/bin/ldid https://github.com/ProcursusTeam/ldid/releases/download/v2.1.5-procursus7/ldid_linux_x86_64 | |
sudo chmod a+rwx /usr/bin/ldid | |
npm install | |
npm install -g @vercel/ncc wgt-to-usb pkg | |
npx babel . --out-dir transpiled --copy-files | |
rm -r node_modules | |
- name: Build service | |
working-directory: tizenbrew-app/TizenBrew/service/transpiled | |
run: | | |
ncc build service.js -o ../dist | |
rm -r node_modules | |
- name: Clean up transpiled files | |
working-directory: tizenbrew-app/TizenBrew/service | |
run: | | |
rm -r transpiled | |
- name: Install modules and build updater service | |
working-directory: tizenbrew-updater/TizenBrewUpdater/service | |
run: | | |
npm install | |
ncc build service.js | |
rm -r node_modules | |
- name: Download Tizen-Studio | |
run: | | |
curl -o tizen-installer "https://download.tizen.org/sdk/Installer/tizen-studio_${TIZEN_STUDIO_VER}/web-cli_Tizen_Studio_${TIZEN_STUDIO_VER}_ubuntu-64.bin" | |
- name: Install Tizen-Studio | |
run: | | |
chmod +x tizen-installer | |
./tizen-installer --accept-license "${GITHUB_WORKSPACE}/tizen-studio" | |
rm ./tizen-installer | |
echo 'export PATH=$PATH:${GITHUB_WORKSPACE}/tizen-studio/tools/ide/bin' >> .bashrc | |
- name: Prepare Tizen Certificate | |
run: | | |
mkdir -p "${GITHUB_WORKSPACE}/tizen-studio-data/keystore/author/" | |
echo "${{ secrets.TIZEN_AUTHOR_KEY }}" | base64 -d > "${GITHUB_WORKSPACE}/tizen-studio-data/keystore/author/tizenbrew-author.p12" | |
./tizen-studio/tools/ide/bin/tizen cli-config "profiles.path=${GITHUB_WORKSPACE}/tizen-studio-data/profile/profiles.xml" | |
cp .github/assets/profiles.xml "${GITHUB_WORKSPACE}/tizen-studio-data/profile/profiles.xml" | |
sed -i "s|\$GITHUB_WORKSPACE|${GITHUB_WORKSPACE}|g" "${GITHUB_WORKSPACE}/tizen-studio-data/profile/profiles.xml" | |
sed -i "s|\$KEY_PW|${{ secrets.TIZEN_AUTHOR_KEY_PW }}|g" "${GITHUB_WORKSPACE}/tizen-studio-data/profile/profiles.xml" | |
chmod 755 "./tizen-studio-data/profile/profiles.xml" | |
- name: Build TizenBrew | |
working-directory: tizenbrew-app/TizenBrew | |
run: | | |
${GITHUB_WORKSPACE}/tizen-studio/tools/ide/bin/tizen build-web -e ".*" -e "node_modules/*" -e "package*.json" -e "yarn.lock" | |
- name: Package TizenBrew for Old Tizen | |
env: | |
PASSWORD: ${{ secrets.TIZEN_AUTHOR_KEY_PW }} | |
APP_PATH: tizenbrew-app/TizenBrew | |
CERT: TizenBrew-Old | |
run: | | |
expect ./package.exp | |
cat "${GITHUB_WORKSPACE}/tizen-studio-data/cli/logs/cli.log" | |
mv tizenbrew-app/TizenBrew/release/TizenBrewStandalone.wgt tizenbrew-app/TizenBrew/release/TizenBrewStandalone-Old.wgt | |
- name: Package TizenBrew for New Tizen | |
env: | |
PASSWORD: ${{ secrets.TIZEN_AUTHOR_KEY_PW }} | |
APP_PATH: tizenbrew-app/TizenBrew | |
CERT: TizenBrew-New | |
run: | | |
expect ./package.exp | |
mv tizenbrew-app/TizenBrew/release/TizenBrewStandalone.wgt tizenbrew-app/TizenBrew/release/TizenBrewStandalone-New.wgt | |
- name: Package TizenBrew as USB Demo Package | |
working-directory: tizenbrew-app/TizenBrew | |
run: | | |
wgt-to-usb release/TizenBrewStandalone-Old.wgt | |
- name: Package Updater for Desktop | |
working-directory: tizenbrew-updater/TizenBrewUpdater | |
run: | | |
pkg -C GZip . --no-bytecode --public | |
- name: Upload TizenBrew package artifact for Old Tizen | |
uses: actions/upload-artifact@v4 | |
with: | |
name: app-${{ github.sha }}-old.wgt | |
path: tizenbrew-app/TizenBrew/release/TizenBrewStandalone-Old.wgt | |
- name: Upload TizenBrew package artifact for New Tizen | |
uses: actions/upload-artifact@v4 | |
with: | |
name: app-${{ github.sha }}-new.wgt | |
path: tizenbrew-app/TizenBrew/release/TizenBrewStandalone-New.wgt | |
- name: Zip USB Demo Package | |
working-directory: tizenbrew-app/TizenBrew | |
run: | | |
zip -r release/TizenBrewStandaloneUSBDemo.zip userwidget/ | |
- name: Release TizenBrew Build Results | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: ${{ env.RELEASE_VERSION }} | |
files: | | |
tizenbrew-app/TizenBrew/release/* | |
tizenbrew-updater/TizenBrewUpdater/dist/* |