Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
yury-dubinin authored Jul 3, 2024
1 parent ef26a2b commit 7b291e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
wait-for-deployment:
runs-on: ubuntu-latest
outputs:
vercel_url: ${{steps.vercel.outputs.environment_url}}
environment_url: ${{steps.vercel.outputs.environment_url}}
steps:
- name: Check out repository
uses: actions/checkout@v4
Expand All @@ -20,7 +20,7 @@ jobs:
python main.py
- name: Echo GITHUB_OUTPUT
env:
SELECTED_COLOR: ${{ steps.vercel.outputs.SELECTED_COLOR }}
SELECTED_COLOR: ${{ steps.vercel.outputs.environment_url }}
run: echo "$SELECTED_COLOR"
- name: Echo GITHUB_ENV
run: echo "$GITHUB_ENV"
Expand All @@ -30,5 +30,5 @@ jobs:
steps:
- name: Echo GITHUB_OUTPUT
env:
SELECTED_COLOR: ${{ needs.wait-for-deployment.outputs.vercel_url }}
SELECTED_COLOR: ${{ needs.wait-for-deployment.outputs.environment_url }}
run: echo "$SELECTED_COLOR"

0 comments on commit 7b291e9

Please sign in to comment.