Skip to content

Commit

Permalink
Fix published files from being empty 📂
Browse files Browse the repository at this point in the history
  • Loading branch information
Kezzsim committed Dec 18, 2023
1 parent 7235251 commit fd90048
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/publish-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,6 @@ jobs:
# Specify Database Connection
TILED_TEST_POSTGRESQL_URI: postgresql+asyncpg://postgres:secret@localhost:5432

- uses: GuillaumeFalourd/wait-sleep-action@v1
with:
time: '1m' # for 1 minute

- name: SANITY CHECK - list contents of table nodes
run: docker exec postgres psql -U postgres -c "SELECT * FROM nodes limit 100;"

Expand Down
4 changes: 2 additions & 2 deletions scripts/run_tiled.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
set -e

tiled catalog init TILED_TEST_POSTGRESQL_URI
tiled catalog init $TILED_TEST_POSTGRESQL_URI
pwd
python scripts/generate_data.py TILED_TEST_POSTGRESQL_URI
python scripts/generate_data.py $TILED_TEST_POSTGRESQL_URI

0 comments on commit fd90048

Please sign in to comment.