Skip to content

Commit

Permalink
Use new "startsWith" and "endsWith" functions (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshLoecker authored Nov 2, 2022
1 parent 0a7d564 commit dec6985
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dockerhub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=semver,pattern={{version}}
type=raw,value=latest,enable=${{ startsWith(github.ref, 'refs/tags/master') }}
type=raw,value=latest,enable=${{ startsWith(github.ref, 'refs/tags/') && endsWith(github.ref, 'master') }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
Expand Down
3 changes: 0 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ RUN conda config --quiet --add channels conda-forge \
&& sed -i "s/^python 3.*//" /opt/conda/conda-meta/pinned \
&& mamba install --quiet --yes python=${PYTHON_VERSION} \
&& mamba env update --quiet --name=base --file="${HOME}/environment.yaml" \
# && mamba install --file "${HOME}/mamba_install.txt" \
# && python3 -m pip install -r "${HOME}/pip_install.txt" \
#&& mamba env update --name base --file "${ENVIRONMENT_FILE}" \
&& mamba clean --quiet --all --force-pkgs-dirs --yes \
&& R -e "devtools::install_github('babessell1/zFPKM')" \
# Install jupyter extensions
Expand Down
1 change: 1 addition & 0 deletions main/py/tests/environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ dependencies:
- tqdm==4.64.1
- pip:
- bioservices==1.10.1
- GEOparse==2.0.3
9 changes: 0 additions & 9 deletions main/py/tests/requirements.txt

This file was deleted.

0 comments on commit dec6985

Please sign in to comment.