diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..ce9fb92 --- /dev/null +++ b/.github/workflows/test.yml @@ -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"