Skip to content

Commit

Permalink
fix workflow bug; force rebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorcampbell committed Sep 1, 2023
1 parent a429073 commit b607f1b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_R_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Create release tag
id: release
shell: bash
run: echo "tag=$(echo ${GITHUB_REF:10})" >> $GITHUB_OUTPUT
run: echo "tag=$(git rev-parse --short=12 HEAD)" >> $GITHUB_OUTPUT
- name: Rebuild and publish r-dsci-100 image
uses: elgohr/Publish-Docker-Github-Action@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_py_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Create release tag
id: release
shell: bash
run: echo "tag=$(echo ${GITHUB_REF:10})" >> $GITHUB_OUTPUT
run: echo "tag=$(git rev-parse --short=12 HEAD)" >> $GITHUB_OUTPUT
- name: Rebuild and publish py-dsci-100 image
uses: elgohr/Publish-Docker-Github-Action@v5
with:
Expand Down
1 change: 1 addition & 0 deletions docker/py-dsci-100-grading/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ RUN pip install "git+https://github.com/jupyter/nbgrader.git"

# Clean the cache
RUN mamba clean --all -f -y

1 change: 1 addition & 0 deletions docker/r-dsci-100-grading/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ RUN pip install "git+https://github.com/jupyter/nbgrader.git"

# Clean the cache
RUN mamba clean --all -f -y

0 comments on commit b607f1b

Please sign in to comment.