diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 38541e4..6102593 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -257,7 +257,7 @@ jobs: - run: mv target/${{ matrix.target}}/release/${{ matrix.executable || 'proxy-scraper-checker' }} dist/ - uses: actions/upload-artifact@v4 with: - name: proxy-scraper-checker-${{ matrix.target }} + name: proxy-scraper-checker-binary-${{ matrix.target }} path: dist/ if-no-files-found: error build-docker: @@ -364,7 +364,7 @@ jobs: EOF - uses: actions/upload-artifact@v4 with: - name: proxy-scraper-checker-${{ matrix.platform }}-docker + name: proxy-scraper-checker-docker-${{ matrix.platform }} path: dist/ if-no-files-found: error include-hidden-files: true @@ -386,7 +386,7 @@ jobs: - run: mv {out,src,Cargo.lock,Cargo.toml,compose.yaml,config.toml,Dockerfile,LICENSE} dist/ - uses: actions/upload-artifact@v4 with: - name: proxy-scraper-checker-${{ matrix.platform }}-docker + name: proxy-scraper-checker-docker-${{ matrix.platform }} path: dist/ if-no-files-found: error include-hidden-files: true diff --git a/README.md b/README.md index 6fbbd99..8b6ee70 100644 --- a/README.md +++ b/README.md @@ -37,9 +37,10 @@ This tool makes many network requests and can impact your IP-address reputation. > **Note:** For Termux users, see the dedicated section below. -1. **Download** the appropriate binary from [nightly builds](https://nightly.link/monosans/proxy-scraper-checker/workflows/ci/main?preview) +1. **Download** the archive for your platform from [nightly builds](https://nightly.link/monosans/proxy-scraper-checker/workflows/ci/main?preview) - - Not sure which one? Check the [platform support table](https://doc.rust-lang.org/beta/rustc/platform-support.html) + - Look for artifacts starting with `proxy-scraper-checker-binary-` followed by your platform + - Not sure which platform? Check the [platform support table](https://doc.rust-lang.org/beta/rustc/platform-support.html) 2. **Extract** the archive to a dedicated folder @@ -56,10 +57,9 @@ This tool makes many network requests and can impact your IP-address reputation. 1. **Install** [Docker Compose](https://docs.docker.com/compose/install/) -2. **Download** the docker archive from [nightly builds](https://nightly.link/monosans/proxy-scraper-checker/workflows/ci/main?preview) +2. **Download** the archive from [nightly builds](https://nightly.link/monosans/proxy-scraper-checker/workflows/ci/main?preview) - - Look for artifacts named `proxy-scraper-checker--docker` - - Not sure which one? Check the [platform support table](https://doc.rust-lang.org/beta/rustc/platform-support.html) + - Look for artifacts starting with `proxy-scraper-checker-docker-` followed by your CPU architecture 3. **Extract** to a folder and configure `config.toml` diff --git a/termux.sh b/termux.sh index d2f0792..46071f3 100755 --- a/termux.sh +++ b/termux.sh @@ -32,7 +32,7 @@ case $(getprop ro.product.cpu.abi) in ;; esac -curl -fLo "${download_path}" "https://nightly.link/monosans/${project_name}/workflows/ci/main/${project_name}-${target}.zip" +curl -fLo "${download_path}" "https://nightly.link/monosans/${project_name}/workflows/ci/main/${project_name}-binary-${target}.zip" mkdir -p "${install_path}" unzip -qod "${install_path}" "${download_path}" rm -f "${download_path}"