Skip to content

Try to add linux arm support #65

Try to add linux arm support

Try to add linux arm support #65

Workflow file for this run

name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
Linux_x86_64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
check-latest: true
- name: Install desktop-file-utils
run: sudo apt-get install -y desktop-file-utils
- name: Build TV Downloader
run: python build.py build
- name: Upload Binary
uses: ncipollo/release-action@v1
with:
artifacts: "./out/*"
allowUpdates: true
tag: "continious-build"
Linux_aarch64:
runs-on: ubuntu-latest
package-suffix: linux-aarch64

Check failure on line 37 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / Build

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 37, Col: 5): Unexpected value 'package-suffix'
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
check-latest: true
- name: Build TV Downloader
run: python build.py build
- name: Upload Binary
uses: ncipollo/release-action@v1
with:
artifacts: "./out/*"
allowUpdates: true
tag: "continious-build"
Windows_x86_64:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
check-latest: true
- name: Build TV Downloader
run: python build.py build
- name: Upload Binary
uses: ncipollo/release-action@v1
with:
artifacts: "./out/*"
allowUpdates: true
tag: "continious-build"