Skip to content

Update build process to use actions/checkout@v4 in build.yml #25

Update build process to use actions/checkout@v4 in build.yml

Update build process to use actions/checkout@v4 in build.yml #25

Workflow file for this run

name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
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"
arm64v8:
runs-on: ubuntu-latest
container:
image: arm64v8/ubuntu:latest
options: --user root
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"