Merge pull request #576 from ketilmo/renovate/https-github.qkg1.top-wiedeh… #469
This file contains hidden or 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: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| env: | |
| BALENA_APP: ketil/balena-ads-b | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: "Deploy-to-Balena" | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - name: Update balena.yml | |
| uses: balena-io-experimental/balena.yml-action@cffeb7987589f35ff623a75fa39a04822b5da5af # Feb 13, 2023 | |
| 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@3653c472f0bb6a9885110328b28c3a80470b3b63 # v2.3.1 | |
| with: | |
| balena_token: ${{ secrets.BALENA_API_KEY }} | |
| fleet: ${{ env.BALENA_APP }} | |
| multi_dockerignore: true |