Skip to content

Commit

Permalink
Install Python using dedicated Github Action
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandrebouthinon committed Apr 1, 2021
1 parent af19d0f commit 0a325ad
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .github/actions/deploy-doc/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ runs:
steps:
- name: Install AWS CLI
run: |
sudo apt-get update
sudo add-apt-repository universe
sudo apt-get install python python-pip
pip install awscli --upgrade --user
shell: bash
- name: Build documentation
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/push_dev.workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,10 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: "12"
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
- uses: ./.github/actions/deploy-doc
env:
NODE_OPTIONS: "--max_old_space_size=4096"
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/push_master.workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,10 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: "12"
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
- uses: ./.github/actions/deploy-doc
env:
NODE_OPTIONS: "--max_old_space_size=4096"
Expand Down

0 comments on commit 0a325ad

Please sign in to comment.