diff --git a/.github/workflows/docker-pr.yml b/.github/workflows/docker-pr.yml index d66a2b2..4287930 100644 --- a/.github/workflows/docker-pr.yml +++ b/.github/workflows/docker-pr.yml @@ -32,7 +32,7 @@ jobs: with: context: . file: ./Dockerfile - platforms: linux/amd64,linux/arm,linux/arm64/v8 + platforms: linux/amd64,linux/arm64/v8 #platforms: linux/amd64 push: false tags: tzahi12345/youtubedl-material:nightly-pr \ No newline at end of file diff --git a/.github/workflows/docker-release.yml b/.github/workflows/docker-release.yml index e8dfea9..7677937 100644 --- a/.github/workflows/docker-release.yml +++ b/.github/workflows/docker-release.yml @@ -80,9 +80,7 @@ jobs: with: context: . file: ./Dockerfile - platforms: linux/amd64,linux/arm,linux/arm64/v8 + platforms: linux/amd64,linux/arm64/v8 push: true tags: ${{ steps.docker-meta.outputs.tags }} labels: ${{ steps.docker-meta.outputs.labels }} - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 5aa3f55..92697c2 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -80,10 +80,7 @@ jobs: with: context: . file: ./Dockerfile - platforms: linux/amd64,linux/arm,linux/arm64/v8 + platforms: linux/amd64,linux/arm64/v8 push: true tags: ${{ steps.docker-meta.outputs.tags }} labels: ${{ steps.docker-meta.outputs.labels }} - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - diff --git a/Dockerfile b/Dockerfile index 856b58d..b8a53de 100644 --- a/Dockerfile +++ b/Dockerfile @@ -53,7 +53,7 @@ FROM base as python WORKDIR /app COPY docker-utils/GetTwitchDownloader.py . RUN apt update && \ - apt install -y --no-install-recommends python3-minimal python-is-python3 python3-pip python3.8-dev build-essential && \ + apt install -y --no-install-recommends python3-minimal python-is-python3 python3-pip && \ apt clean && \ rm -rf /var/lib/apt/lists/* RUN pip install PyGithub requests diff --git a/docker-utils/GetTwitchDownloader.py b/docker-utils/GetTwitchDownloader.py index d32beb1..e236942 100644 --- a/docker-utils/GetTwitchDownloader.py +++ b/docker-utils/GetTwitchDownloader.py @@ -26,8 +26,7 @@ def getZipName(): def getLatestFileInRepo(repo, search_string): # Create an unauthenticated instance of the Github object - gh_token = os.environ.get('GH_TOKEN') - g = Github(gh_token if gh_token else None) # ensure it's none if it's falsy + g = Github(os.environ.get('GH_TOKEN')) # Replace with the repository owner and name repo = g.get_repo(repo)