diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b9c3f60..bdd003f 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -60,8 +60,7 @@ jobs: name: ${{ runner.os }} Build path: | build/*.exe - build/*.bin - build/*.app/**/* + build/* - name: Release uses: ncipollo/release-action@main @@ -70,5 +69,4 @@ jobs: generateReleaseNotes: false artifacts: | build/*.exe - build/*.bin - build/*.app/**/* \ No newline at end of file + build/* \ No newline at end of file diff --git a/.github/workflows/deploy_nt.yml b/.github/workflows/deploy_nt.yml deleted file mode 100644 index d6226e8..0000000 --- a/.github/workflows/deploy_nt.yml +++ /dev/null @@ -1,74 +0,0 @@ -# This is a workflow for building the RBMD executable on all three major platforms. -# Example blatantly stolen from https://github.com/jimkring/kasa-cli/ - -name: build_win - -# Controls when the workflow will run -on: - # Triggers the workflow if a tag is pushed - push: - tags: - - '**' - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -jobs: - build: - strategy: - fail-fast: false - matrix: - os: [windows-latest] - - runs-on: ${{ matrix.os }} - - steps: - # Check-out repository - - name: Checkout - uses: actions/checkout@v3 - - - name: Setup Python - uses: actions/setup-python@v4 - with: - python-version: '3.10' # Version range or exact version of a Python version to use, using SemVer's version range syntax - architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified - cache: 'pip' - cache-dependency-path: | - **/requirements*.txt - # Install dependencies - - name: Install Dependencies - run: | - pip install -r requirements.txt - # Build python script into a stand-alone exe - - name: Build with Nuitka Action - uses: Nuitka/Nuitka-Action@main - with: - nuitka-version: 1.4.8 - script-name: src/userinterface.py - onefile: true - enable-plugins: pyside6 - enable-console: false - disable-console: true - # windows-icon-from-ico: - show-scons: true - output-file: RealBandcampMusicDiscovery.exe - - # Uploads artifacts - - name: Upload Artifacts - uses: actions/upload-artifact@v3 - with: - name: ${{ runner.os }} Build - path: | - build/*.exe - build/*.bin - build/*.app/**/* - - - name: Release - uses: ncipollo/release-action@main - with: - makeLatest: "true" - generateReleaseNotes: false - artifacts: | - build/*.exe - build/*.bin - build/*.app/**/* \ No newline at end of file