Skip to content

Commit b17860b

Browse files
authored
Fix setting GH_ACCESS_TOKEN envvar (#156)
1 parent 6461840 commit b17860b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/playwright.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
run: yarn install
1919
- name: Install Playwright Browsers
2020
run: yarn playwright install --with-deps
21-
- name: Set environment variable
22-
run: echo "GH_ACCESS_TOKEN=${{ secrets.GH_ACCESS_TOKEN }}" >> $GITHUB_ENV
2321
- name: Run Playwright tests
22+
env:
23+
GH_ACCESS_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }}
2424
run: yarn playwright test
2525
- uses: actions/upload-artifact@v4
2626
if: ${{ !cancelled() }}

0 commit comments

Comments
 (0)