Skip to content

Commit

Permalink
Changed the way we install python2
Browse files Browse the repository at this point in the history
  • Loading branch information
eva-vashkevich committed Jan 14, 2025
1 parent ba4c2a0 commit 38f6b48
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/actions/setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ runs:
- name: Install Python for node-sass
shell: bash
run: |
DEBIAN_FRONTEND=noninteractive sudo apt-get install -y --no-install-recommends python2
DEBIAN_FRONTEND=noninteractive wget https://www.python.org/ftp/python/2.2/Python-2.2.tgz
DEBIAN_FRONTEND=noninteractive sudo tar xzf Python-2.2.tgz
DEBIAN_FRONTEND=noninteractive cd Python-2.2
DEBIAN_FRONTEND=noninteractive sudo ./configure --enable-optimizations
DEBIAN_FRONTEND=noninteractive sudo make install
- name: Install packages
shell: bash
Expand Down

0 comments on commit 38f6b48

Please sign in to comment.