fix: fix action #3
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: 4.5.1 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v3 | |
- name: Set env | |
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | |
- name: Install modules and build service | |
working-directory: tizenbrew-app/TizenBrew/service | |
run: | | |
sudo apt install -y expect | |
npm install | |
npm install -g @vercel/ncc | |
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 | |
rm ./tizen-installer | |
echo 'export PATH=$PATH:~/tizen-studio/tools/ide/bin' >> .bashrc | |
- name: Prepare Tizen Certificate | |
run: | | |
~/tizen-studio/tools/ide/bin/tizen certificate -a TizenBrew -p 1234 -c NZ -s Aukland -ct Aukland -o Tizen -n TizenBrew -e [email protected] -f tizencert | |
~/tizen-studio/tools/ide/bin/tizen security-profiles add -n TizenBrew -a "~/tizen-studio-data/keystore/author/tizencert.p12" -p 1234 | |
~/tizen-studio/tools/ide/bin/tizen cli-config "profiles.path=~/tizen-studio-data/profile/profiles.xml" | |
chmod 755 "~/tizen-studio-data/profile/profiles.xml" | |
- name: Build | |
working-directory: tizenbrew-app/TizenBrew | |
run: | | |
~/tizen-studio/tools/ide/bin/tizen build-web -e ".*" -e "node_modules/*" -e "package*.json" -e "yarn.lock" | |
- name: Prepare for password prompt | |
run: | | |
sed -i "s|~/tizen-studio-data/keystore/author/tizencert.pwd|1234|g" ~/tizen-studio-data/profile/profiles.xml | |
sed -i "s|~/tizen-studio-data/tools/certificate-generator/certificates/distributor/tizen-distributor-signer.pwd|tizenpkcs12passfordsigner|g" ~/tizen-studio-data/profile/profiles.xml | |
sed -i 's|password=""|password="tizenpkcs12passfordsigner"|g' ~/tizen-studio-data/profile/profiles.xml | |
- name: Package WGT | |
run: | | |
expect ./package.exp | |
- name: Upload Tizen package artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: app-${{ github.sha }}.wgt | |
path: tizenbrew-app/TizenBrew/release/TizenBrew.wgt | |
- name: Release Build Result | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: ${{ steps.date.outputs.date }} | |
files: | | |
tizenbrew-app/TizenBrew/release/TizenBrew.wgt |