Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
niley7464 committed Jul 23, 2024
1 parent 182ac4d commit 24f8d09
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/tizen-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
app: ['TextClassification']
app: ['TextClassification', 'OrientationDetection']
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -30,10 +30,10 @@ jobs:
run: |
export PATH=$PATH:${{ github.workspace }}/tizen-studio/tools/ide/bin
tizen build-cs -- ${{ github.workspace }}/Tizen.NET/${{ matrix.app }}
# tizen package -t tpk -- ${{ github.workspace }}/Tizen.native/${{ matrix.app }}/Debug
# mv ${{ github.workspace }}/Tizen.native/${{ matrix.app }}/Debug/*${{ matrix.app }}*.tpk ${{ matrix.app }}.tpk
# # - name: Upload tpk package
# uses: actions/upload-artifact@v4
# with:
# name: tizen_native_${{ matrix.app }}
# path: ${{ matrix.app }}.tpk
mkdir -p ${{ github.workspace }}/Tizen.NET/${{ matrix.app }}/tpk
find . -name '*.tpk' -exec mv {} ${{ github.workspace }}/Tizen.NET/${{ matrix.app }}/tpk \;
- name: Upload tpk package
uses: actions/upload-artifact@v4
with:
name: tizen_cs_${{ matrix.app }}
path: ${{ github.workspace }}/Tizen.NET/${{ matrix.app }}/tpk

0 comments on commit 24f8d09

Please sign in to comment.