diff --git a/.github/workflows/generate_builds.yml b/.github/workflows/generate_builds.yml new file mode 100644 index 0000000..3794456 --- /dev/null +++ b/.github/workflows/generate_builds.yml @@ -0,0 +1,32 @@ +name: Generate build + +on: + workflow_dispatch: + push: + branches: + - "main" + schedule: + - cron: '0 1 * * *' + + jobs: + build-and-upload: + name: Build and upload + runs-on: ${{ matrix.os }} + strategy: + matrix: + include: + - build: linux + os: ubuntu-latest + target: x86_64-unknown-linux-musl + + - build: windows-gnu + os: windows-latest + target: x86_64-pc-windows-gnu + steps: + - name: Clone repository + uses: actions/checkout@v4 + - name: Install python 3.10 + uses: actions/setup-python@v4 + with: + python-version: '3.10' + - run: pip install -r requirements.txt \ No newline at end of file