Merge pull request #178 from ketilmo/renovate/wiedehopf-readsb-3.x #106
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Deploy to Balena" | |
on: | |
push: | |
branches: | |
- master | |
env: | |
BALENA_APP: ketil/balena-ads-b | |
jobs: | |
build: | |
name: "Deploy-to-Balena" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Checkout main branch | |
uses: actions/checkout@v4 | |
- name: Update balena.yml | |
uses: balena-io-experimental/balena.yml-action@main | |
with: | |
# Synchronise the GitHub README with the Balena Hub README | |
sync_readme: true | |
# If pushing a tag to deploy, use the same tag as the version number to display on Balena Hub | |
sync_tag: false | |
- name: Deploy to Balena | |
uses: balena-io/deploy-to-balena-action@master | |
with: | |
balena_token: ${{ secrets.BALENA_API_KEY }} | |
fleet: ${{ env.BALENA_APP }} | |
multi_dockerignore: true |