Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
ATPROTO_OAUTH_PDS_DID: "did:web:pds.divine.test"
ENABLE_TENANT_AUTO_PROVISIONING: "true"
API_URL: http://localhost:3000
KEYCAST_BINARY: ./target/debug/keycast
KEYCAST_BINARY: ${{ github.workspace }}/target/debug/keycast

steps:
- uses: actions/checkout@v6
Expand All @@ -97,7 +97,7 @@ jobs:
./scripts/generate_key.sh

- name: Run database migrations
run: ./target/debug/keycast --migrate
run: "$KEYCAST_BINARY" --migrate

- name: Install e2e dependencies
working-directory: e2e
Expand All @@ -113,7 +113,7 @@ jobs:
RUST_LOG: "info,sqlx=warn,nostr_relay_pool=warn"
run: |
mkdir -p e2e/test-results
nohup ./target/debug/keycast \
nohup "$KEYCAST_BINARY" \
> e2e/test-results/keycast.log 2>&1 < /dev/null &
echo $! > .keycast.pid
disown
Expand Down
Loading