Skip to content

fix(deploy) update git flow #30

fix(deploy) update git flow

fix(deploy) update git flow #30

Workflow file for this run

name: BalenaCloud Deploy
on:
push:
# Only run workflow for pushes to specific branches
branches:
- main
- vlc
jobs:
balena-deploy:
runs-on: ubuntu-latest
environment: balena
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Balena Deploy Blocks amd64
uses: Theia-Scientific/balena-cli@v18
if: success()
with:
balena_api_token: ${{secrets.BALENA_TOKEN}}
balena_command: "push ${{vars.BALENA_FLEET}}-amd64"
- name: Balena Deploy Blocks rpi
uses: Theia-Scientific/balena-cli@v18
if: success()
with:
balena_api_token: ${{secrets.BALENA_TOKEN}}
balena_command: "push ${{vars.BALENA_FLEET}}-rpi"