flyingcys is testing out GitHub Actions 🚀 #170
Workflow file for this run
This file contains hidden or 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: TuyaOpen Check Build | |
| run-name: ${{ github.actor }} is testing out GitHub Actions 🚀 | |
| on: | |
| pull_request: | |
| branches: | |
| - master # 当分支有提交时执行此工作流 | |
| - dev | |
| jobs: | |
| Build-Switch-Demo: | |
| runs-on: self-hosted | |
| steps: | |
| - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." | |
| - run: echo "🐧 Running on a ${{ runner.os }}, branch is ${{ github.ref }} !" | |
| - name: Check out repository code | |
| uses: actions/checkout@v4 | |
| - name: Check Base Tools | |
| run: | | |
| cd ${{ github.workspace }} | |
| . ./export.sh | |
| tos.py version | |
| tos.py check | |
| rm -rf ${{ github.workspace }}/dist | |
| - name: Check [switch_demo] Build | |
| run: | | |
| cd ${{ github.workspace }} | |
| . ./export.sh | |
| cd ${{ github.workspace }}/apps/tuya_cloud/switch_demo | |
| tos.py dev bac -d ${{ github.workspace }}/dist | |
| - name: Check [your_chat_bot] Build | |
| run: | | |
| cd ${{ github.workspace }} | |
| . ./export.sh | |
| cd ${{ github.workspace }}/apps/tuya.ai/your_chat_bot | |
| tos.py dev bac -d ${{ github.workspace }}/dist | |
| - name: Check [your_otto_robot] Build | |
| run: | | |
| cd ${{ github.workspace }} | |
| . ./export.sh | |
| cd ${{ github.workspace }}/apps/tuya.ai/your_otto_robot | |
| tos.py dev bac -d ${{ github.workspace }}/dist | |
| - run: echo "💡 This job's status is ${{ job.status }}." |