use correct ports and descriptions for UCG Fiber #82
Workflow file for this run
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 | |
| on: pull_request | |
| jobs: | |
| build: | |
| runs-on: [ubuntu-latest] | |
| if: ${{ !contains(github.event.head_commit.message, 'skip ci') }} | |
| steps: | |
| - name: Checkout Sources | |
| uses: actions/checkout@v4 | |
| with: | |
| path: udm-iptv | |
| - name: Setup Dependencies | |
| run: sudo apt-get install devscripts debhelper build-essential | |
| - name: Build Package | |
| run: | | |
| cd udm-iptv | |
| debuild -uc -us --lintian-opts --profile debian | |
| - name: Upload Artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: build-artifacts | |
| if-no-files-found: error | |
| path: | | |
| *.deb | |
| *.build* | |
| *.changes | |
| *.dsc |