Skip to content

Commit

Permalink
Add missing env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
lucanovera committed Jan 15, 2025
1 parent 4a2b7ab commit 71ee112
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/cypress_e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ env:
# Docker auth with read-only permissions.
DOCKER_USER: ${{ secrets.DOCKER_USER }}
DOCKER_RO_TOKEN: ${{ secrets.DOCKER_RO_TOKEN }}
DEFAULT_PYTHON_VERSION: "3.10.13"

jobs:
Cypress-E2E:
Expand All @@ -26,10 +27,11 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Python 3.10
- name: Set Up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: ${{ env.DEFAULT_PYTHON_VERSION }}
cache: "pip"

- name: Install Nox
run: pip install nox>=2022
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/publish_docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ env:
# Docker auth with read-write (publish) permissions. Set as env in workflow root as auth is required in multiple jobs.
DOCKER_USER: ${{ secrets.DOCKER_USER }}
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}
DEFAULT_PYTHON_VERSION: "3.10.13"

jobs:
ParseTags:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/publish_docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
env:
TAG: ${{ github.event.release.tag_name }}
PROD_PUBLISH: true
DEFAULT_PYTHON_VERSION: "3.10.13"

jobs:
publish_docs:
Expand Down

0 comments on commit 71ee112

Please sign in to comment.