fix: change package name #60
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-nextgen/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-nextgen/service/transpiled | |
run: | | |
ncc build index.js -o ../dist | |
rm -r node_modules | |
- name: Build UI | |
working-directory: tizenbrew-app/TizenBrew/tizenbrew-ui | |
run: | | |
npm install --force | |
npm run build | |
rm -r node_modules | |
- name: Clean up transpiled files | |
working-directory: tizenbrew-app/TizenBrew/service-nextgen/service | |
run: | | |
rm -r transpiled | |
- 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/TizenBrewNextGeneration.wgt tizenbrew-app/TizenBrew/release/TizenBrewStandalone-Old.wgt | |
- name: Package TizenBrew as USB Demo Package | |
working-directory: tizenbrew-app/TizenBrew | |
run: | | |
wgt-to-usb release/TizenBrewStandalone-Old.wgt | |
- 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: 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/* |