Skip to content

Commit

Permalink
Fix ci missing python client publication
Browse files Browse the repository at this point in the history
  • Loading branch information
ldeluigi committed Aug 23, 2024
1 parent 69de75a commit 8d5a651
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
**/*.git
**/*.env
**/*.sqlite3
**/.gitignore
**/.dockerignore
**/*docker-*.yml
**/Dockerfile
**/Dockerfile.*
Expand All @@ -17,3 +19,5 @@ demo/
.vscode/
backend/.kubernetes/
backend/backend/debug_settings.py
client/*/tests
client/*/pytest.ini
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,11 @@ jobs:
- name: Run python tests 🧪
run: python backend/manage.py test client/python/tests/ --no-input --parallel auto
working-directory: .
- name: Upload client artifact 📦
uses: actions/upload-artifact@v4
with:
name: spellbook-client-python
path: client/python/spellbook_client

bot-discord:
runs-on: ubuntu-latest
Expand All @@ -398,6 +403,11 @@ jobs:
uses: docker/setup-buildx-action@v3
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Download client artifact ⬇
uses: actions/download-artifact@v4
with:
name: spellbook-client-python
path: client/python/spellbook_client
- name: Build and export image 🏗️
uses: docker/build-push-action@v6
with:
Expand Down
1 change: 0 additions & 1 deletion common/.dockerignore

This file was deleted.

0 comments on commit 8d5a651

Please sign in to comment.