Skip to content

Commit

Permalink
Merge pull request #2046 from dandi/install-python-in-cd-workflows
Browse files Browse the repository at this point in the history
Explicitly install Python in CD workflows
  • Loading branch information
mvandenburgh authored Oct 16, 2024
2 parents 03fad7b + 883b3f5 commit 4ed3ddd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/backend-production-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ jobs:
fetch-depth: 0 # fetch history for all branches and tags
ref: release

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"

- name: Install Heroku CLI
run: curl https://cli-assets.heroku.com/install.sh | sh

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/backend-staging-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ jobs:
with:
fetch-depth: 0 # fetch history for all branches and tags

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"

- name: Install Heroku CLI
run: curl https://cli-assets.heroku.com/install.sh | sh

Expand Down

0 comments on commit 4ed3ddd

Please sign in to comment.