Refactor menu and dtmf into its own file. #97
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: Build armhf | |
| on: | |
| push: | |
| branches: [ next ] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build-arm: | |
| runs-on: ubuntu-latest | |
| environment: next | |
| strategy: | |
| matrix: | |
| architecture: [arm64] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Run build.sh for ARM | |
| run: | | |
| export REPO_URL=${{ vars.REPO_URL }} | |
| export DOCKER_HUB_PASSWORD=${{ secrets.DOCKER_HUB_PASSWORD }} | |
| ./build.sh build-armhf |