Skip to content
Draft
Show file tree
Hide file tree
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
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ env:

jobs:
tests:
if: false
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -53,8 +54,13 @@ jobs:


publish-docker:
needs: [tests]
# needs: [tests]
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
attestations: write
id-token: write
# main, tags or pull_request
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/') || github.event_name == 'pull_request'

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ ENV PYTHONUNBUFFERED=1 \
# Install build dependencies
RUN apt-get update && \
apt-get install -y --no-install-recommends \
libexpat1 && \
libexpat1 git && \
rm -rf /var/lib/apt/lists/*

# Create and activate virtual environment
Expand Down
Loading