Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

Commit

Permalink
Testing reusable flow 12
Browse files Browse the repository at this point in the history
  • Loading branch information
lholota committed May 22, 2023
1 parent 2de4ae7 commit 8976434
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/run-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,19 @@ jobs:
id: vars
run: cat ./e2e/environments/local.${{ inputs.environment }}.env >> "$GITHUB_OUTPUT"

- name: Load variables
id: vars2
run: grep DNS1 ./e2e/environments/local.${{ inputs.environment }}.env >> "$GITHUB_OUTPUT"

- name: Debug 1
run: echo ${{ steps.vars.outputs.DNS1 }}

- name: Debug 2
run: echo ${{ steps.vars.outputs.DNS2 }}

- name: Debug 3
run: echo ${{ steps.vars2.outputs.DNS1 }}

e2e-tests:
runs-on: [ self-hosted ]
needs: [ load-config ]
Expand All @@ -43,6 +56,9 @@ jobs:
- name: Debug 2
run: echo ${{ steps.vars.outputs.DNS2 }}

- name: Debug 3
run: echo ${{ steps.vars2.outputs.DNS1 }}

- name: Check out e2e repository
uses: actions/checkout@v3.5.2
with:
Expand Down

0 comments on commit 8976434

Please sign in to comment.