Skip to content

Commit a29fb7f

Browse files
Fix builds as they were missing typing extensions and updating the repo locally. (#54)
* fix builds
1 parent 92d3e5e commit a29fb7f

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ jobs:
1111
port: ${{ secrets.SSH_PORT }}
1212
script: |
1313
cd ~/projects/pythonista-bot/
14-
docker compose pull bot
15-
docker compose up --build -d
14+
git reset --hard HEAD || true
15+
git pull origin main
16+
docker compose --profile snekbox pull
17+
docker compose --profile snekbox up --build -d
1618
username: ${{ secrets.SSH_USER }}
1719

1820
name: Deploy

poetry.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jishaku = "*"
2323
black = "*"
2424
isort = "*"
2525
"asyncpg-stubs" = "*"
26+
"typing-extensions" = "*"
2627

2728
[tool.black]
2829
line-length = 125

0 commit comments

Comments
 (0)