From 174ec4ec2a5097f51281ba6866b3d684d7d90e08 Mon Sep 17 00:00:00 2001 From: Maanit Madan Date: Thu, 22 Aug 2024 12:03:41 -0400 Subject: [PATCH] Create balena.yml --- .github/workflows/balena.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/balena.yml diff --git a/.github/workflows/balena.yml b/.github/workflows/balena.yml new file mode 100644 index 0000000..25156a7 --- /dev/null +++ b/.github/workflows/balena.yml @@ -0,0 +1,17 @@ +on: + push: + branches: + - main + +jobs: + balena_cloud_build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: balena-io/deploy-to-balena-action@master + id: build + with: + balena_token: ${{ secrets.BALENA_TOKEN }} + fleet: rf_labs/rftv + - name: Log release ID built + run: echo "Built release ID ${{ steps.build.outputs.release_id }}"