Skip to content

Commit

Permalink
Fix the Pyodide Docker image build step
Browse files Browse the repository at this point in the history
  • Loading branch information
juntyr committed Oct 22, 2024
1 parent cc9acfb commit 90f855b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@ jobs:
run: echo "PYODIDE_DOCKER_IMAGE=$(docker images climet-eu/pyodide --format '{{.ID}}')" >> $GITHUB_ENV
- name: Build the Pyodide Docker image
if: ${{ env.PYODIDE_DOCKER_IMAGE == '' }}
run: cd pyodide && docker build -t climet-eu/pyodide .
run: |
cd pyodide
docker build -t climet-eu/pyodide .
echo "PYODIDE_DOCKER_IMAGE=$(docker build . -q)" >> $GITHUB_ENV
- name: Build Pyodide and all required packages
run: |
cd pyodide
Expand Down

0 comments on commit 90f855b

Please sign in to comment.