Skip to content

Commit

Permalink
Adds deploy to balena
Browse files Browse the repository at this point in the history
Change-type: minor
Signed-off-by: Alex Bucknall <alex.bucknall@gmail.com>
  • Loading branch information
Bucknalla committed Jun 18, 2024
1 parent 9b71215 commit 4222bdc
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
on:
pull_request:
types: [opened, synchronize, closed]
branches:
- main
- master

jobs:
balena_cloud_build:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
arch: [aarch64, amd64, armv7hf]

steps:
- uses: actions/checkout@v3
- uses: balena-io/deploy-to-balena-action@master
id: build
with:
balena_token: ${{ secrets.BALENA_TOKEN }}
fleet: arribada/notecard-go-${{ matrix.arch }}
- name: Log release ID built
run: echo "Built release ID ${{ steps.build.outputs.release_id }}"

0 comments on commit 4222bdc

Please sign in to comment.