Skip to content

Commit

Permalink
wip: fix workflow ensuring OS_CLOUD is set an env. variable
Browse files Browse the repository at this point in the history
  • Loading branch information
jcfr committed May 4, 2024
1 parent 601bf10 commit e6c879c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/create-instance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:

- name: Create instance
run: |
OS_CLOUD=BIO180006_IU # Select openstack auth settings defined in "clouds.yaml"
export OS_CLOUD=BIO180006_IU # Select openstack auth settings defined in "clouds.yaml"
source ~/venv/bin/activate
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
- name: Poll instance status
id: instance_poll
run: |
OS_CLOUD=BIO180006_IU # Select openstack auth settings defined in "clouds.yaml"
export OS_CLOUD=BIO180006_IU # Select openstack auth settings defined in "clouds.yaml"
source ~/venv/bin/activate
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
id: instance_metadata
if: ${{ steps.instance_poll.outputs.status == 'complete' }}
run: |
OS_CLOUD=BIO180006_IU # Select openstack auth settings defined in "clouds.yaml"
export OS_CLOUD=BIO180006_IU # Select openstack auth settings defined in "clouds.yaml"
source ~/venv/bin/activate
Expand Down

0 comments on commit e6c879c

Please sign in to comment.