Skip to content

Commit

Permalink
Enable caching
Browse files Browse the repository at this point in the history
  • Loading branch information
nictru committed Mar 29, 2024
1 parent d813e0f commit ba8c1a1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,6 @@ jobs:
uses: docker/bake-action@v4
with:
push: true
set: |
*.cache-from=type=gha
*.cache-to=type=gha,mode=max
3 changes: 0 additions & 3 deletions export.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ def get_cell_labels():
regex = re.compile(r".*-cell-labels-[A-Z0-9]+.csv")
return get_files(regex)

def format_download_id(original: str):
return os.path.basename(original).replace('-', '_')[:-4]


@module.ui
def export_ui():
Expand Down
4 changes: 2 additions & 2 deletions requirements.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

apt-get update -y && apt-get install -y python3-pip python3-dev && \
sudo apt-get update -y && sudo apt-get install -y python3-pip python3-dev && \
python3 -m pip install --upgrade pip && \
python3 -m pip install -r requirements.txt && \
python3 -m pip install --user -r requirements.txt && \
Rscript requirements.R

0 comments on commit ba8c1a1

Please sign in to comment.