Skip to content

Commit

Permalink
refactor: Replace deprecated ::set-output with in e2e-tests workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
amalv committed Jan 19, 2024
1 parent b640d2e commit 2a51dc6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ jobs:
name: "deploy-url"
- name: Set deploy URL
id: url
run: echo "::set-output name=DEPLOY_URL::$(cat deploy-url.txt)"
run: echo "DEPLOY_URL=$(cat deploy-url.txt)" >> $GITHUB_ENV
- name: Debug deploy URL
run: 'echo "DEPLOY_URL: ${{ steps.url.outputs.DEPLOY_URL }}"'
run: 'echo "DEPLOY_URL: ${{ env.DEPLOY_URL }}"'
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
Expand All @@ -53,7 +53,7 @@ jobs:
env:
VITE_AUTH0_TEST_USERNAME: ${{ secrets.VITE_AUTH0_TEST_USERNAME }}
VITE_AUTH0_TEST_PASSWORD: ${{ secrets.VITE_AUTH0_TEST_PASSWORD }}
PLAYWRIGHT_TEST_BASE_URL: ${{ steps.url.outputs.DEPLOY_URL }}
PLAYWRIGHT_TEST_BASE_URL: ${{ env.DEPLOY_URL }}
- uses: actions/upload-artifact@v4
if: always()
with:
Expand Down

1 comment on commit 2a51dc6

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.