From 29067b6aa75dac772a75783f7c96bc328bd4eec2 Mon Sep 17 00:00:00 2001 From: mxmlnkn Date: Thu, 29 Aug 2024 22:26:03 +0200 Subject: [PATCH] fixup! use older docker --- .github/workflows/appimage.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/appimage.yml b/.github/workflows/appimage.yml index 5cc422c5..5aeed334 100644 --- a/.github/workflows/appimage.yml +++ b/.github/workflows/appimage.yml @@ -9,12 +9,17 @@ on: jobs: Manylinux-Appimage: runs-on: ubuntu-latest - container: quay.io/pypa/manylinux2014_x86_64:2024.07.15-1 + container: quay.io/pypa/manylinux2014_x86_64 env: APP_PYTHON_VERSION: "3.12" steps: - # Cannot use checkout@v4 because it requires a newer GLIBC version than manylinux2014! - - uses: actions/checkout@v3 + # Cannot use actions checkout@v4 because node.js requires a newer GLIBC version than manylinux2014! + - name: Checkout + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + yum install -y https://github.com/cli/cli/releases/download/v2.55.0/gh_2.55.0_linux_amd64.rpm + gh clone ${{ github.repositoryUrl }} . -- --depth 1 --branch ${{ github.ref }} - name: Build AppImage working-directory: AppImage