Refresh build URLs, remove unrecognized --disable-dvbaes option #109
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: Build firmware | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Build the firmware | |
run: | | |
docker build . --pull --file Dockerfile --tag satip-axe-make | |
docker run --rm -v $(pwd):/build satip-axe-make all release | |
- name: Archive build artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: firmware | |
path: out |