0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Fixed inputs being passed as env variables in CI

- turns out we need `github.event` prepended to the variable for it to
  work
This commit is contained in:
Daniel Lockyer 2022-02-17 12:25:30 +01:00
parent b1bb2ad8e8
commit 33d4a711e0
No known key found for this signature in database
GPG key ID: D21186F0B47295AD

View file

@ -26,7 +26,7 @@ jobs:
- name: Run Playwright tests
run: yarn test:browser
env:
TEST_URL: ${{ inputs.site_url }}
TEST_URL: ${{ github.event.inputs.site_url }}
- uses: actions/upload-artifact@v2
if: always()