diff --git a/.github/workflows/build_latest.yml b/.github/workflows/build_latest.yml index 51232ad..a6d046c 100644 --- a/.github/workflows/build_latest.yml +++ b/.github/workflows/build_latest.yml @@ -18,6 +18,9 @@ on: required: true default: 'main' +env: + ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true + jobs: build-win-x64: runs-on: windows-latest @@ -62,8 +65,6 @@ jobs: - name: Check runner architecture run: uname -m - - run: apt-get update - - run: apt-get install -y curl wget - name: Check-out repository uses: actions/checkout@v4 @@ -134,45 +135,6 @@ jobs: build/*.exe build/*.bin build/*.app/**/* - - build-mac-x64: - runs-on: macos-latest - - steps: - - name: Check runner architecture - run: uname -m - - - name: Check-out repository - uses: actions/checkout@v4 - - - name: Setup Python - uses: actions/setup-python@v5 - with: - python-version: '3.10' - cache: 'pip' - cache-dependency-path: | - **/requirements*.txt - architecture: 'x64' - - - name: Install Dependencies - run: | - pip install -r requirements.txt - - - name: Build Executable with Nuitka - uses: Nuitka/Nuitka-Action@main - with: - nuitka-version: main - script-name: gofilecli.py - onefile: true - - - name: Upload Artifact[linux-x64] - uses: actions/upload-artifact@v3.1.3 - with: - name: GoFileCLI_osx-X64 - path: | - build/*.exe - build/*.bin - build/*.app/**/* build-mac-arm64: runs-on: macos-latest