Skip to content

Commit

Permalink
fixup! use older docker
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmlnkn committed Aug 29, 2024
1 parent 22141a1 commit 46ca717
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/appimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,19 @@ 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
git config --global --add safe.directory "$PWD"
gh repo clone ${{ github.repositoryUrl }} .
git checkout ${{ github.sha }}
- name: Build AppImage
working-directory: AppImage
Expand Down

0 comments on commit 46ca717

Please sign in to comment.