Skip to content

test

test #92

name: Test & Release
# on:
# push:
# tags:
# - "v*"
on: push
jobs:
test:
name: Test all devices
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test on all supported devices
id: run_tests
uses: adamjakab/action-connectiq-builder@v1
with:
operation: TEST
devices: approachs60,approachs62,d2bravo,d2bravo_titanium,d2charlie,descentmk1,fenix3,fenix3_hr,fr230,fr235,fr630,fr645m,fr735xt,fr920xt,vivoactive,vivoactive3d,vivoactive4,vivoactive_hr
certificate: ${{ secrets.CONNECTIQ_DEVELOPER_KEY_BASE64}}
release:
needs: test
name: Package & Release
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v4
- name: Package App
id: package_app
uses: adamjakab/action-connectiq-builder@v1
with:
operation: PACKAGE
certificate: ${{ secrets.CONNECTIQ_DEVELOPER_KEY_BASE64}}
package_name: iHIIT_${{ github.ref_name }}.iq
- name: Check Package Path
run: |
echo "Relative Package Path: '${{ steps.package_app.outputs.package_path }}'"
echo "Absolute Package Path: '${{ github.workspace }}/${{ steps.package_app.outputs.package_path }}'"
ls -la "${{ github.workspace }}/${{ steps.package_app.outputs.package_path }}"
- name: Create New Release
id: create_release
uses: ncipollo/release-action@v1
with:
generateReleaseNotes: true
artifacts: ${{ github.workspace }}/${{ steps.package_app.outputs.package_path }}