Skip to content

Commit

Permalink
Update env.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
chbrandt authored Nov 3, 2023
1 parent e2b76da commit 2ba5706
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions .github/workflows/env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:

- name: Load .env file
uses: xom9ikk/dotenv@v2
with:
load-mode: strict
# mode: development
# path: custom/path/to/folder/with/env
# with:
# path: custom/path/to/folder/with/env
# mode: development
# load-mode: strict

# - name: Some other action
# run: |
Expand All @@ -49,3 +49,14 @@ jobs:
echo "ISIS-ASP versions: ${ISIS_VERSION}-${ASP_VERSION}"
echo "ISIS-ASP versions: ${{ env.ISIS_VERSION }}-${{ env.ASP_VERSION }}"
- name: Change variables
run: |
echo 'GISPY_IMAGE=jupyter-gispy' >> $GITHUB_ENV
echo 'ISIS_IMAGE=jupyter-isis' >> $GITHUB_ENV
echo 'ASP_IMAGE=jupyter-isis-asp' >> $GITHUB_ENV
- name: Change variables
run: |
echo GISPY_IMAGE: $GISPY_IMAGE
echo ISIS_IMAGE: $ISIS_IMAGE
echo ASP_IMAGE: $ASP_IMAGE

0 comments on commit 2ba5706

Please sign in to comment.