Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
quintenvandamme committed May 3, 2024
1 parent 219c2a2 commit 2ff3054
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: test

on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:

jobs:
Linux_arm64:
runs-on: ubuntu-latest
container:
image: arm64v8/python:3.11

steps:
- name: Checkout code
uses: actions/checkout@v4

- 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: "continuous-build"

0 comments on commit 2ff3054

Please sign in to comment.