Fixed issue where platforms >10 wouldn't appear #68
Workflow file for this run
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: balenaCloud build | |
on: | |
pull_request: | |
types: [opened, synchronize, closed] | |
branches: | |
- main | |
jobs: | |
balena_cloud_build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: balena-io/[email protected] | |
id: build | |
with: | |
balena_token: ${{ secrets.BALENA_TOKEN }} | |
fleet: gh_chrisys/train-departure-display | |
- name: Log release ID built | |
run: echo "Built release ID ${{ steps.build.outputs.release_id }}" |