Skip to content

Update build process to include TV Downloader build step in build.yml #37

Update build process to include TV Downloader build step in build.yml

Update build process to include TV Downloader build step in build.yml #37

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 3.10
uses: actions/setup-python@v3
with:
python-version: '3.10'
- 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
steps:
- uses: actions/checkout@v4

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

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

You have an error in your yaml syntax on line 38
- uses: uraimo/run-on-arch-action@v2
name: Run commands
id: runcmd
with:
arch: aarch64
distro: ubuntu_latest
githubToken: ${{ github.token }}
setup: |
sudo apt-get update -q -y
sudo apt-get install -q -y desktop-file-utils python3 python-is-python3
- 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"