Skip to content

release for v2.2.4

release for v2.2.4 #84

name: Test & Release
# on:
# push:
# tags:
# - "v*"
on: push
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
max-parallel: 3
matrix:
device:
[
approachs60,
approachs62,
d2bravo,
d2bravo_titanium,
d2charlie,
descentmk1,
fenix3,
fenix3_hr,
fr230,
fr235,
fr630,
fr645m,
fr735xt,
fr920xt,
vivoactive,
vivoactive3d,
vivoactive4,
vivoactive_hr,
]
# device: [fr235]
steps:
- uses: actions/checkout@v4
- name: Test on device ${{ matrix.device }}
id: run_tests
uses: adamjakab/action-connectiq-builder@v1
with:
operation: TEST
device: ${{ matrix.device }}
certificate: ${{ secrets.CONNECTIQ_DEVELOPER_KEY_BASE64}}
release:
needs: test
name: 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 }}